15 lines
210 B
C++
15 lines
210 B
C++
#include <string>
|
|
#include "common.hpp"
|
|
|
|
using std::string;
|
|
|
|
int main([[maybe_unused]] int argc, char *argv[]) {
|
|
string path = argv[1];
|
|
|
|
Sheet sheet {path};
|
|
|
|
sheet.fold_all();
|
|
|
|
sheet.print();
|
|
}
|