Implemented the resolver unittest.

Changed Loader API to be in line with Dumper,
and updated examples, tutorials and docs.
This commit is contained in:
Ferdinand Majerech 2011-10-12 23:49:42 +02:00
parent 934df763ad
commit 34b11405d4
16 changed files with 262 additions and 279 deletions

View file

@ -3,7 +3,7 @@ import yaml;
void main()
{
yaml.Node root = yaml.load("input.yaml");
yaml.Node root = Loader("input.yaml").load();
foreach(string word; root["Hello World"])
{
writeln(word);