FSE/test/Tests.cpp
IlyaShurupov 31fa6e96bb tmp
2024-03-27 17:06:46 +03:00

17 lines
No EOL
319 B
C++

#include "Interpreter.hpp"
int main() {
Interpreter interpreter;
interpreter.interpret("");
interpreter.interpret("m");
interpreter.interpret("mD a");
interpreter.interpret("mD /");
interpreter.interpret("MD /A123");
interpreter.interpret("cd /A123");
interpreter.interpret("md asd");
return 0;
}