racket/collects/framework/private/application.ss
Matthew Flatt 39cedb62ed v3.99.0.2
svn: r7706
2007-11-13 12:40:00 +00:00

16 lines
423 B
Scheme

#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)))