aboutsummaryrefslogtreecommitdiffstats
path: root/tests/variables_expected.txt
blob: 2e6e2beff336d187e6fa61fb23d1f446f70f61a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
(error? (def a 1)) -> false
a -> 1
(error? (def a 300)) -> false
a -> 300
(error? (def a "strings")) -> false
a -> "strings"
(error? (def a 1)) -> false
a -> (:quoted :symbols 123 :or "strings")
(error? (set! a 42)) -> false
a -> 42
(error? (set! b 99)) -> true