Skip to content

Instantly share code, notes, and snippets.

@jxonas
Created August 20, 2013 21:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jxonas/6287412 to your computer and use it in GitHub Desktop.
Save jxonas/6287412 to your computer and use it in GitHub Desktop.
#lang racket/base
(require racket/sandbox)
(define e
(call-with-trusted-sandbox-configuration
(lambda ()
(make-evaluator 'racket/base #:allow-for-require '(racket/gui)))))
(e '(require racket/gui))
(e '(get-text-from-user "Enter your name" ""))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment