1
1
mirror of https://github.com/kanaka/mal.git synced 2024-08-16 17:20:23 +03:00

Add a test that eval is in root scope and that newly defined symbols can be found in nested scopes.

This commit is contained in:
Andrew Wason 2019-12-11 15:43:23 -05:00
parent 0c31a28d55
commit a124b32269

View File

@ -126,6 +126,11 @@
*ARGV*
;=>()
;;
;; Testing that eval sets aa in root scope, and that it is found in nested scope
(let* (b 12) (do (eval (read-string "(def! aa 7)")) aa ))
;=>7
;>>> soft=True
;>>> optional=True
;;
@ -175,3 +180,4 @@ mymap
;;; Hopefully less problematic characters can be checked together
(read-string "1; &()*+,-./:;<=>?@[]^_{|}~")
;=>1