Initial revision

original commit: d4305bf5d53ff0b29f4f31e4eafe29ac415e6bf9
This commit is contained in:
Robby Findler 1997-12-01 18:44:39 +00:00
parent 02971ca426
commit 3880966c43

10
collects/mred/app.ss Normal file
View File

@ -0,0 +1,10 @@
(unit/sig mred:application^
(import)
(define current-app-name (make-parameter
"MrEd"
(lambda (x)
(unless (string? x)
(error 'current-app-name
"the app name must be a string"))
x))))