RosettaCodeData/Task/Reflection-List-properties/Ecstasy/reflection-list-properties.ecstasy
2024-07-13 15:19:22 -07:00

7 lines
199 B
Text

module test {
void run() {
@Inject Console console;
Property[] properties = &this.actualType.properties;
console.print($"The properties of {this}: {properties}");
}
}