gscheme/examples/args2.scm

7 lines
69 B
Scheme
Raw Normal View History

2022-08-05 05:28:41 -04:00
;; too many arguments
(define p (lambda (x y) (+ x y)))
(p 6 7 8)