-
Notifications
You must be signed in to change notification settings - Fork 4
Version 2.0
Techcraft7 edited this page May 20, 2020
·
11 revisions
See "Creating a Shell Plugin" to learn how
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
array = [1, 2];
array2 = matrix(2, array);
//OR
array3 = matrix(3, new int[] {1, 2, 3});
``
