11 lines
185 B
Scheme
11 lines
185 B
Scheme
|
; Copyright (c) 1994 by Richard Kelsey. See file COPYING.
|
||
|
|
||
|
|
||
|
(define foo
|
||
|
(external (=> (int32 int32) unit)
|
||
|
(lambda (x y)
|
||
|
(display (+ x y)))))
|
||
|
|
||
|
(define (test)
|
||
|
(foo 3 4))
|