VRL
VRL copied to clipboard
Support Array Element Access
Accessing elements is currently not supported.
int[] array = // ...
int v = array[0]; // causes parse error
support is still not optimal since array-elem-access is done via operator-invocation (which requires a separate window/node).
Sample code:
public class MainArrays {
public static void main(String[] args) {
String s;
s = (args[0]);
println(s);
}
}
Screenshots:

