aboutsummaryrefslogtreecommitdiff
path: root/feasibility_analysis/gui/windows.rkt
diff options
context:
space:
mode:
authorIbrahim Mkusa <ibrahimmkusa@gmail.com>2017-04-09 22:37:50 -0400
committerIbrahim Mkusa <ibrahimmkusa@gmail.com>2017-04-09 22:37:50 -0400
commitcb381871d518077649be6272af823dabec2fcd28 (patch)
tree98547efe9389421f9f58219a8278e166d2b069c6 /feasibility_analysis/gui/windows.rkt
parent404f3d7edfe648dc3fd51c1afc1b3984557f1902 (diff)
reorganized repo a bit better
Diffstat (limited to 'feasibility_analysis/gui/windows.rkt')
-rw-r--r--feasibility_analysis/gui/windows.rkt9
1 files changed, 0 insertions, 9 deletions
diff --git a/feasibility_analysis/gui/windows.rkt b/feasibility_analysis/gui/windows.rkt
deleted file mode 100644
index 4524673..0000000
--- a/feasibility_analysis/gui/windows.rkt
+++ /dev/null
@@ -1,9 +0,0 @@
-#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