NimYAML/doc/snippets/quickstart/01/00-code.nim

9 lines
178 B
Nim
Raw Normal View History

2021-05-17 22:31:47 +00:00
import yaml/serialization, streams
2016-10-08 16:38:27 +00:00
type Person = object
name : string
age : int32
var personList: seq[Person]
var s = newFileStream("in.yaml")
load(s, personList)
s.close()