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);