Networking is now an option (compile with -DNETWORKING).
[picobit.git] / tests / test-fixnums.scm
blobe7a9205c142edf947f2a32eb86b463afd8c74580
1 ;; test for the new (0-255) fixnums
3 (define x 255)
4 (define (loop x)
5   (if (> x 0)
6       (begin ;  (print x)
7              (loop (- x 1)))))
8 (loop x)