Some additional tests, and use () instead of {} for racket sexprs

original commit: 62958248515545e62f1bc0c7027d4b729f8baf36
This commit is contained in:
Eli Barzilay 2010-10-11 15:01:03 -04:00
parent f5d1244f61
commit 68e6777bc8

View File

@ -91,7 +91,13 @@ fo@o -@-> fo@o
---
@[foo] -@-> (foo)
---
@|{blah}| -@-> {"blah"}
@{@foo bar} -@-> (foo " bar")
---
@|{blah}| -@-> ("blah")
---
@|{blah|@foo bleh}| -@-> ("blah" foo " bleh")
---
@|{|@meh blah|@foo bleh}| -@-> (meh " blah" foo " bleh")
---
;; -------------------- newlines and spaces in text
---