mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
10 lines
104 B
Nim
Executable File
10 lines
104 B
Nim
Executable File
|
|
type
|
|
PNode = ref TNode
|
|
TNode = tuple[self: PNode]
|
|
|
|
var node: PNode
|
|
new(node)
|
|
node.self = node
|
|
|