From 662a74631187089599225a034a7291ea6667cd15 Mon Sep 17 00:00:00 2001 From: Jordan Orelli Date: Sat, 2 May 2015 19:31:07 -0400 Subject: [PATCH] more readme info --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 3841839..33ba412 100644 --- a/README.md +++ b/README.md @@ -105,12 +105,18 @@ but semicolons \;, colons \:, parens \( and \), brackets \[ and \] and braces \{ These are some objects: ``` +# key-value pairs are delimited by spaces; no commas are required {name: "jordan" age: 28} + { one: 1 two: two is also a number pi: 3.14 } + +# you may use a bare string as a value, but a semicolon is required to +# terminate the bare string +{name: jordan; age: 28} ``` - lists: they're `[]interface{}` values. They're not typed, and they can be