6 lines
62 B
Plaintext
6 lines
62 B
Plaintext
(define (my-proc x)
|
|
(+ (my-proc (- x 1)) x))
|
|
|
|
(my-proc 34)
|
|
|