以下のコードの実行ファイルを作りたいです。Dr.racketで書いたスキームです。これはどのように行われますか?スタンドアローンで、iOSやWindowsで開くことができれば最高です。お時間をいただきありがとうございました!
#lang racket
(require racket/gui/base)
(require compiler/embed)
; Make a frame by instantiating the frame% class
(define frame (new frame% [label "GUI"]
[width 200]
[height 200]))
; Make a static text message in the frame
(define msg (new message% [parent frame]
[label "This box is empty"]))
; Show the frame by calling its show method
(send frame show #t)