racket/collects/framework/private/application.ss
Eli Barzilay 3459c3a58f merged units branch
svn: r5033
2006-12-05 20:31:14 +00:00

14 lines
442 B
Scheme

(module application (lib "a-unit.ss")
(require "sig.ss")
(import)
(export framework:application^)
(define current-app-name (make-parameter
"MrEd"
(λ (x)
(unless (string? x)
(error 'current-app-name
"the app name must be a string"))
x))))