home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
scheme
/
gjr
/
cmplrtst.lha
/
close.scm
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1990-03-27
|
207 b
|
18 lines
;;; -*- Scheme -*-
(declare (usual-integrations))
#|
Description:
This code tests simple closures.
Usage:
(define bar (curried-+ 23))
(bar 34) -> 57
|#
(define (curried-+ x)
(lambda (y)
(+ x y)))