mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-02 03:02:31 +00:00
9 lines
103 B
Nim
Executable File
9 lines
103 B
Nim
Executable File
type
|
|
PNode = ref TNode
|
|
TNode = tuple[self: PNode]
|
|
|
|
var node: PNode
|
|
new(node)
|
|
node.self = node
|
|
|