blob: 3dc31c9290af940a16994e45ea65cacf3e08f97d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
test = "test";
// Correct usage cases
for(i = [0:len(test)-1]) {
echo(test[i]);
}
// Out of bounds
echo(test[-1]);
echo(test[len(test)]);
// Invalid index type
echo(test["test"]);
echo(test[true]);
echo(test[false]);
echo(test[[0]]);
echo(test[1.7]);
|