Skip to content

Choose a tag to compare

@Techcraft7 Techcraft7 released this 16 Mar 18:48
· 94 commits to master since this release

New features

  • wait(ms) wait ms miliseconds

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()]);
}