A simple scripting language in C++
Ferenc Szontágh
2025-04-18 df361ede5e694c41095d7be4eabf86d0ee6a1162
test_scripts/function_test.vs
@@ -5,7 +5,9 @@
string $variable2 = $variable;
function test = (int $i) {
    print("Param: ",$i);
    int $result = $i + 1;
    print("The result is: ", $result);
}
function increment = (int $i) int {
@@ -13,4 +15,7 @@
}
increment(1);
test(1);
int $t = increment(2);
print("The result is: ", $t);