9 lines
155 B
Nim
Raw Normal View History

2016-10-08 18:38:27 +02:00
import yaml
type Person = object
name : string
age : int32
var personList: seq[Person]
var s = newFileStream("in.yaml")
load(s, personList)
s.close()