Invalid argument type for function
egorsmkv opened this issue · 2 comments
egorsmkv commented
Perhaps there is something wrong with the compiler.
File tests.bish
:
values = ["1.23", "2.04", "3.23"];
for (v in values) {
print("Default value: ");
print(v);
}
Result:
egor@book:~/Scripts/Bish > bish -r tests.bish
Bish error: Invalid argument type for function call in file 'tests.bish' line 5:
print(v);
...
tdenniston commented
@eg0r Should be fixed now.
egorsmkv commented
@tdenniston Yes, now there are no problems.