gui/collects/framework/private/application.rkt
Eli Barzilay ae0eb104c5 A lot of "MrEd" -> "GRacket"s.
original commit: 7f6efdc8beea4b81af31807f9788197c24d0d63e
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)))