Implement step 7
[jackhill/mal.git] / tests / step0_repl.mal
1 ;; Testing basic string
2 abcABC123
3 ;=>abcABC123
4
5 ;; Testing string containing spaces
6 hello mal world
7 ;=>hello mal world
8
9 ;; Testing string containing symbols
10 []{}"'* ;:()
11 ;=>[]{}"'* ;:()
12
13
14 ;; Test long string
15 hello world abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ 0123456789 (;:() []{}"'* ;:() []{}"'* ;:() []{}"'*)
16 ;=>hello world abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ 0123456789 (;:() []{}"'* ;:() []{}"'* ;:() []{}"'*)
17