gscheme/examples/args1.scm

7 lines
67 B
Scheme
Raw Permalink Normal View History

2022-08-05 05:28:41 -04:00
;; not enough arguments
(define p (lambda (x y) (+ x y)))
(p 6)