Przeglądaj źródła

Add test that shows the scope isn't working right

Lucas Stadler 8 lat temu
rodzic
commit
a7c3d15c1c
1 zmienionych plików z 3 dodań i 1 usunięć
  1. 3 1
      scm/inc/tests.scm

+ 3 - 1
scm/inc/tests.scm

@ -112,4 +112,6 @@
112 112
  '[["(let ((x 3) (y 4)) (+ x y))" "7\n"]
113 113
    ["(let ((b #t)) (boolean? b))" "#t\n"]
114 114
    ["(let ((x 3) (x 4)) x)" "4\n"]
115
    ["(let ((x 3)) (let ((x 4)) x))" "4\n"]])
115
    ["(let ((x 3)) (let ((x 4)) x))" "4\n"]
116
    ;["(let ((x 3)) (let ((x 4)) x) x)" "3\n"]
117
    ])