Added ior and xor tests to the repository.
[picobit/chj.git] / tests / test-sub.scm
blobbc4e0be15a0843bb759a803c098fd4ce5a3abe09
1 ;; very simple sanity test for bignums
2 (define (foo x y)
3   (- x y))
5 ;(foo 1 3)
6 (display (if (= (foo 15 3) 12) ; TODO test with bignum-range numbers
7              "OK\n"
8              "NAH\n"))