Tests added to the repository.
[picobit/chj.git] / tests / test-mul.scm
blob3d2d72ab2aef57360332fcf7ab8ed1042ea24227
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) 45) ; TODO test with bignum-range numbers
7              "OK\n"
8              "NAH\n"))