5 lines
76 B
Scheme
5 lines
76 B
Scheme
(define (p) (p))
|
|
(define (test x y) (if (= x 0) 0 y))
|
|
|
|
(print (test 1 (p)))
|