Add test for let

This commit is contained in:
madmaurice 2021-04-02 20:01:35 +02:00
parent 32d0313681
commit 009ec0d0cd

4
t/let.t Normal file
View file

@ -0,0 +1,4 @@
(let ((a 5) (b 6))
(expect "a is 5" (= a 5))
(expect "b is 6" (= b 6))
)