summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorBoutade <thegoofist@protonmail.com>2019-05-03 16:00:27 -0500
committerBoutade <thegoofist@protonmail.com>2019-05-03 16:00:27 -0500
commit614f605513f80db554efb3c90cb6c072265bb140 (patch)
tree756ffc8b97fe619c38a5eb0bdaa159e9f0ac3750 /examples
parentd6b9ef40b4e98752d7969c421d04a0cb2618ff4d (diff)
added to the example json, cleaned up parzival.lisp
Diffstat (limited to 'examples')
-rw-r--r--examples/foo.json58
1 files changed, 40 insertions, 18 deletions
diff --git a/examples/foo.json b/examples/foo.json
index 8a410b6..b140166 100644
--- a/examples/foo.json
+++ b/examples/foo.json
@@ -1,20 +1,42 @@
-{"name" : "Boutade",
- "languages" : [ {"lang" : "Common Lisp",
- "proficiency" : null,
- "lovesIt" : true }
+[
+ {"name" : "Boutade",
+ "languages" : [ {"lang" : "Common Lisp",
+ "proficiency" : null,
+ "lovesIt" : true }
- , {"lang" : "Rust",
- "proficiency" : 0.8,
- "lovesIt" : true,
- "isAshamedToLoveIt" : true}
+ , {"lang" : "Rust",
+ "proficiency" : 0.8,
+ "lovesIt" : true,
+ "isAshamedToLoveIt" : true}
- , {"lang" : "Haskell",
- "proficiency" : 0.5,
- "lovesIt" : "sometimes, in some ways"}
- ],
- "pizzaOrder" : ["Tempeh Italian Sausage", "Spinach", "Mushrooms", "Red Pepper Flakes"],
- "isCool" : false,
- "isFunny" : false,
- "thinksPeopleAreLaughing" : true,
- "beHonest_thinksPeopleAreLaughing" : false
-}
+ , {"lang" : "Haskell",
+ "proficiency" : 0.5,
+ "lovesIt" : "sometimes, in some ways"}
+ ],
+ "pizzaOrder" : ["Tempeh Italian Sausage", "Spinach", "Mushrooms", "Red Pepper Flakes"],
+ "isCool" : false,
+ "isFunny" : false,
+ "thinksPeopleAreLaughing" : true,
+ "beHonest_thinksPeopleAreLaughing" : false
+ },
+ {"name" : "Goofist",
+ "languages" : [ {"lang" : "Common Lisp",
+ "proficiency" : ["over", 9000],
+ "lovesIt" : true }
+
+ , {"lang" : "Rust",
+ "proficiency" : -1,
+ "lovesIt" : true,
+ "isAshamedToLoveIt" : true}
+
+ , {"lang" : "Haskell",
+ "proficiency" : -1,
+ "lovesIt" : "i cannot tell a lie"}
+ ],
+ "pizzaOrder" : ["Blue Stilton", "Walnuts", "Pork Sausage", "Apple Slices"],
+ "isCool" : true,
+ "isFunny" : true,
+ "thinksPeopleAreLaughing" : true,
+ "beHonest_thinksPeopleAreLaughing" : true
+ }
+]