Initial commit
This commit is contained in:
3
Program/CMakeLists.txt
Normal file
3
Program/CMakeLists.txt
Normal file
@@ -0,0 +1,3 @@
|
||||
add_executable(Interpreter main.cpp)
|
||||
|
||||
target_link_libraries(Interpreter PRIVATE Parser)
|
||||
10
Program/main.cpp
Normal file
10
Program/main.cpp
Normal file
@@ -0,0 +1,10 @@
|
||||
#include <iostream>
|
||||
#include "Parser.h"
|
||||
|
||||
int main() {
|
||||
Parser::Parser parser;
|
||||
|
||||
std::string input = "123 + 5432 - 33 / 434 (asd)";
|
||||
|
||||
parser.parse(input);
|
||||
}
|
||||
Reference in New Issue
Block a user