gui/gui-lib/framework/private/application.rkt
2014-12-02 02:33:07 -05: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)))