10 lines
164 B
C++
10 lines
164 B
C++
#include <iostream>
|
|
#include "Parser.h"
|
|
|
|
int main() {
|
|
Parser::Parser parser;
|
|
|
|
std::string input = "123 + 5432 - 33 / 434 (asd)";
|
|
|
|
parser.parse(input);
|
|
} |