5 lines
265 B
Text
5 lines
265 B
Text
properties:=List.properties;
|
|
properties.println();
|
|
List(1,2,3).property(properties[0]).println(); // get value
|
|
List(1,2,3).Property(properties[0])().println(); // method that gets value
|
|
List(1,2,3).BaseClass(properties[0]).println(); // another way to get value
|