Since we don't use closures as pairs in the stack anymore, the
[picobit.git] / tests / test-fixnums.scm
blob3e0ee24becaaf10c1d651e7469e5791c128f3cf1
1 ;; test for the new (0-255) fixnums
3 (define x 255)
4 (define (loop x)
5   (if (> x 0)
6       (begin (display x)
7              (loop (- x 1)))))
8 (loop x)