2023-01-14 11:34:38 +00:00
|
|
|
#include <ceev/lang.h>
|
|
|
|
#include <deque>
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
if (argc != 2) {
|
2023-01-26 15:51:56 +00:00
|
|
|
std::cout << "Wrong amount of args" << std::endl;
|
2023-01-14 11:34:38 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
std::deque<std::string> args;
|
|
|
|
args.push_back(std::string(argv[1]));
|
|
|
|
return read_file(args);
|
2023-01-26 15:51:56 +00:00
|
|
|
return 0;
|
2023-01-14 11:34:38 +00:00
|
|
|
}
|