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