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