RosettaCodeData/Task/Reflection-List-methods/Arturo/reflection-list-methods.arturo

11 lines
175 B
Text
Raw Permalink Normal View History

2025-02-27 18:35:13 -05:00
define :person [
init: constructor [name surname]
sayHello: method [][
print ["Hello" \name "!"]
]
]
p: to :person ["John" "Doe"]!
print.lines methods p