12 lines
124 B
Scheme
12 lines
124 B
Scheme
(define a 15)
|
|
|
|
; basic testing
|
|
|
|
(define (test x)
|
|
(let ([a (+ a 3)]
|
|
[b (- a 39)])
|
|
(+ a b)))
|
|
|
|
(test 1)
|
|
(test 2)
|