RosettaCodeData/Task/Reflection-List-properties/Zkl/reflection-list-properties.zkl
2023-07-01 13:44:08 -04:00

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