Hermes/tests/gui/windows.rkt
2017-04-09 22:37:50 -04:00

10 lines
236 B
Racket

#lang racket
(require racket/gui/base)
;; Create a new window via the frame class
(define frame (new frame% [label "Example"]))
;; Show frame(window) by calling it show method
(send frame show #t) ;; you call object methods via send