racket/collects/framework/private/application.rkt
2010-04-27 16:50:15 -06:00

16 lines
423 B
Racket

#lang scheme/unit
(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)))