mirror of
https://github.com/status-im/NimYAML.git
synced 2025-02-09 01:44:16 +00:00
11 lines
145 B
YAML
11 lines
145 B
YAML
%YAML 1.2
|
|
--- !nim:custom:NodeObj &a
|
|
name: Node 1
|
|
left:
|
|
name: Node 2
|
|
left: ~
|
|
right: &b
|
|
name: Node 3
|
|
left: *a
|
|
right: ~
|
|
right: *b |