gscheme/examples/args2.scm

7 lines
69 B
Scheme

;; too many arguments
(define p (lambda (x y) (+ x y)))
(p 6 7 8)