mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
8 lines
104 B
Nim
8 lines
104 B
Nim
|
|
type
|
|
Base* = ref object of RootObj
|
|
s*: string
|
|
|
|
method m*(b: Base) {.base.} =
|
|
echo "Base ", b.s
|