File: bench-arithint.scm

package info (click to toggle)
sigscheme 0.9.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,660 kB
  • sloc: lisp: 37,498; ansic: 31,109; sh: 4,368; makefile: 744; asm: 333; ruby: 290
file content (10 lines) | stat: -rw-r--r-- 181 bytes parent folder | download | duplicates (19)
1
2
3
4
5
6
7
8
9
10
(define *max* 20001)

(define (test x y)
  (if (= x *max*)
      x
      (test (- x (+ (* y 2) (/ x (abs y))))
	    (- y (+ (* x 2) (/ y (abs x)))))))

(write (test 1 1))
(newline)