Clean up `test-suite/vm'.
[bpt/guile.git] / test-suite / vm / t-closure.scm
1 (define func
2 (let ((x 2))
3 (lambda ()
4 (let ((x++ (+ 1 x)))
5 (set! x x++)
6 x++))))
7
8 (list (func) (func) (func))