5 lines
65 B
Nim
5 lines
65 B
Nim
|
|
type Foo = object
|
||
|
|
proc bar(f:Foo) = echo "bar"
|
||
|
|
var f:Foo
|
||
|
|
f.bar()
|