mirror of
https://github.com/status-im/NimYAML.git
synced 2025-01-13 04:54:19 +00:00
0f2e077b87
* There are errors which indicate real bugs!
10 lines
179 B
Nim
10 lines
179 B
Nim
import yaml.serialization, streams
|
|
type Person = object
|
|
name : string
|
|
age : int32
|
|
|
|
var personList: seq[Person]
|
|
|
|
var s = newFileStream("in.yaml")
|
|
load(s, personList)
|
|
s.close() |