Tests added to the repository.
[picobit.git] / tests / test-named-let.scm
blobac931b86e25097648259ee3adb5bb2bb456966c0
1 (let loop ((x 0))
2   (if (< x 10)
3       (begin (display x)
4              (loop (+ x 1)))))