mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
12 lines
155 B
Nim
Executable File
12 lines
155 B
Nim
Executable File
|
|
type
|
|
PNode = ref TNode
|
|
TNode = tuple # comment
|
|
self: PNode # comment
|
|
a, b: int # comment
|
|
|
|
var node: PNode
|
|
new(node)
|
|
node.self = node
|
|
|