tdenniston/bish

Invalid argument type for function

egorsmkv opened this issue · 2 comments

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

@eg0r Should be fixed now.

@tdenniston Yes, now there are no problems.