Reify bytevector? in the correct module
[bpt/guile.git] / test-suite / vm / t-closure3.scm
CommitLineData
0b5f0e49
LC
1(define (stuff)
2 (let* ((x 2)
3 (chbouib (lambda (z)
4 (+ 7 z x))))
5 (chbouib 77)))
b6368dbb
LC
6
7(stuff)