racket/collects/framework/private/application.rkt
2010-05-16 23:46:05 -04:00

16 lines
426 B
Racket

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