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

9 lines
164 B
Nim

import yaml, streams
type Person = object
name : string
age : int32
var personList: seq[Person]
var s = newFileStream("in.yaml")
load(s, personList)
s.close()