A simple scripting language in C++
Ferenc Szontágh
2025-04-19 48d9278f0b75098e83e58c589ea86d006358604d
test_scripts/array.vs
@@ -17,4 +17,8 @@
int $size = sizeof($array);
printnl("The size of the $array: ", $size);
printnl("The size of the $array: ", $size);
for (int $i = 0; $i < sizeof($intArray); $i++) {
    printnl("Value: ", $intArray[$i]);
}