A simple scripting language in C++
Ferenc Szontágh
2025-04-18 a76181288ae27b85521838ee87352727c3cba2f8
test_scripts/function_test.vs
@@ -7,7 +7,6 @@
function test = (int $i) {
    print("Param: ",$i);
    int $result = $i + 1;
    print("The result is: ", $result);
}
function increment = (int $i) int {
@@ -15,7 +14,7 @@
}
test(1);
int $z = 10;
increment($z);
int $t = increment(2);
print("The result is: ", $t);