From d5079d88cefb4f4441893a41d4b1fbf673028cb2 Mon Sep 17 00:00:00 2001 From: Matthew Butterick Date: Sun, 26 Mar 2017 08:32:45 -0700 Subject: [PATCH] fix test file --- .../jsonic-demo/jsonic-test.rkt | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/beautiful-racket-demo/jsonic-demo/jsonic-test.rkt b/beautiful-racket-demo/jsonic-demo/jsonic-test.rkt index 121882f..5f05a2e 100644 --- a/beautiful-racket-demo/jsonic-demo/jsonic-test.rkt +++ b/beautiful-racket-demo/jsonic-demo/jsonic-test.rkt @@ -1,13 +1,11 @@ #lang jsonic-demo // a line comment [ - @$ 'null $@, - @$ #f $@, - @$ #t $@, - @$ (* 6 7) $@, - @$ "string" $@, - @$ (list "array" "of" "strings") $@, - @$ (hash 'key-1 42 - 'key-2 "value" - 'key-3 (hash 'subkey 21)) $@ + @$ 'null $@, + @$ (* 6 7) $@, + @$ (= 2 (+ 1 1)) $@, + @$ (list "array" "of" "strings") $@, + @$ (hash 'key-1 'null + 'key-2 (even? 3) + 'key-3 (hash 'subkey 21)) $@ ] \ No newline at end of file