New features
wait(ms)waitmsmiliseconds
ARRAYS!
Create an array: a = new int[] { 1, 3, 3, 7 };
Do chars("some string"); to get a character array
Get length of an Array OR String: len("string"); OR len(myArray);
Example: loop through chars from input
a = chars(read());
loop (len(a)) {
write(a[getLoopIndex()]);
}