This commit is contained in:
IlyaShurupov 2024-03-07 09:46:17 +03:00 committed by Ilusha
parent 49c67eb028
commit b906e0e66c
2 changed files with 3 additions and 3 deletions

View file

@ -41,7 +41,7 @@ if (i == 10) {
)"; )";
auto script = R"( auto script = R"(
var i = 10; var i = false;
print i; print i;
)"; )";

View file

@ -18,10 +18,10 @@ int main() {
if (module.initialize()) { if (module.initialize()) {
testParser(); // testParser();
// testCore(); // testCore();
// testPrimitives(); // testPrimitives();
// testInterpreter(); testInterpreter();
module.deinitialize(); module.deinitialize();
} }