default value
Issue #33
new
From reading the source, it seems like the intention is
print yaml.safe_load('link with:\n - = : library1.dll\n version: 1.2\n') {'link with': [{'version': 1.2, '=': 'library1.dll'}]}
should be {'link with': 'library1.dll'}
if not, what is the api to deal with "!!value" cheers, Jon