ea2306b30 ^
1 2 3 4 5 6 7 8 9 10 11 12
type TObj* = object var myObj* : ref TObj method test123(a : ref TObj) = echo("Hi base!") proc testMyObj*() = test123(myObj)