RosettaCodeData/Task/Reflection-List-properties/Ecstasy/reflection-list-properties.ecstasy

8 lines
199 B
Text
Raw Permalink Normal View History

2024-07-13 15:19:22 -07:00
module test {
void run() {
@Inject Console console;
Property[] properties = &this.actualType.properties;
console.print($"The properties of {this}: {properties}");
}
}