Skip to content

Version 2.0

Techcraft7 edited this page May 20, 2020 · 11 revisions

Version 2.0

Shell plugins

See "Creating a Shell Plugin" to learn how

NEW Array Syntax

Old syntax is still supported for backwards compatibility but should not be used!

Because of the new syntax, arrays (using the NEW syntax) cannot be passed into a function directly, use the old syntax to do this

Correct

array = [1, 2];
array2 = matrix(2, array);
//OR
array3 = matrix(3, new int[] {1, 2, 3});

Incorrect

``

Clone this wiki locally