Skip to content

Commit

Permalink
More tests for let expression
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleect committed Sep 15, 2023
1 parent 9bae270 commit c047a32
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions spec/test.scm
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,9 @@
(set! a (+ a 10))
(+ a b))) 50)

(assert (let ((let_val 10)) let_val) 10)
(assert (let ((let_val let_val)) let_val) 25)

;; begin
(define begin_val 0)
(assert
Expand Down

0 comments on commit c047a32

Please sign in to comment.