RosettaCodeData/Task/Reflection-List-methods/Nim/reflection-list-methods-1.nim

5 lines
65 B
Nim
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
type Foo = object
proc bar(f:Foo) = echo "bar"
var f:Foo
f.bar()