mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
13 lines
158 B
Nim
13 lines
158 B
Nim
type
|
|
TObj* = object {.inheritable.}
|
|
|
|
var myObj* : ref TObj
|
|
|
|
method test123(a : ref TObj) =
|
|
echo("Hi base!")
|
|
|
|
proc testMyObj*() =
|
|
test123(myObj)
|
|
|
|
|