This commit is contained in:
IlyaShurupov 2024-03-05 19:19:04 +03:00 committed by Ilusha
parent f666416696
commit ed3421321c
11 changed files with 1179 additions and 308 deletions

View file

@ -9,7 +9,7 @@ using namespace obj;
TEST_DEF_STATIC(Basic) {
Parser parser;
String stream = "{ var i; print false; }";
String stream = "{ var i = true; print (i + 1) * 10; }";
auto res = parser.parse(stream);
}