racket/collects/framework/private/application.rkt
2011-07-02 10:37:53 -04:00

16 lines
427 B
Racket

#lang scheme/unit
(require "sig.rkt")
(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)))