gui/collects/framework/app.ss
Robby Findler 2264863cce got rid of dunit
original commit: d27b973c9e75159de610aea6bd14cc3eccf58195
1998-11-04 15:47:57 +00:00

10 lines
238 B
Scheme

(unit/sig framework: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))))