external.scm 221 B

12345678910111213
  1. ; Part of Scheme 48 1.9. See file COPYING for notices and license.
  2. ; Authors: Richard Kelsey
  3. (define foo
  4. (external (=> (int32 int32) unit)
  5. (lambda (x y)
  6. (display (+ x y)))))
  7. (define (test)
  8. (foo 3 4))