Files
Toy/scripts/test.toy

13 lines
180 B
Plaintext

import standard;
var array = [42];
var result = null;
//problematic line
result = max(0, array[0]);
assert result == 42, "Indexing in argument list failed";
print "All good";