Fix scripts and tests.

This commit is contained in:
Stephen Chung
2020-06-27 21:19:53 +08:00
parent 549ef6bf7f
commit f3bde843cb
3 changed files with 36 additions and 36 deletions

View File

@@ -12,6 +12,6 @@ for a in arr {
//print(a); // <- if you uncomment this line, the script will fail to run
// because 'a' is not defined here
for i in range(0, 5) { // runs through a range from 1 to 5 exclusive
for i in range(0, 5) { // runs through a range from 0 to 4
print(i);
}