diff options
author | Ibrahim Mkusa <ibrahimmkusa@gmail.com> | 2017-04-21 18:14:16 -0400 |
---|---|---|
committer | Ibrahim Mkusa <ibrahimmkusa@gmail.com> | 2017-04-21 18:14:16 -0400 |
commit | ce93a60d0ed502c08410f5a4f0223e8dd620de34 (patch) | |
tree | f6c851c9bcc1966633c9a67672cd9fb55c11172c | |
parent | 42eceeb36f2866c87ae29568233d6a52292a77a6 (diff) |
removed unnecessary begin statements
-rw-r--r-- | Hermes/Hermes_Gui1.3.rkt | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Hermes/Hermes_Gui1.3.rkt b/Hermes/Hermes_Gui1.3.rkt index ba239c3..395c26e 100644 --- a/Hermes/Hermes_Gui1.3.rkt +++ b/Hermes/Hermes_Gui1.3.rkt @@ -12,8 +12,7 @@ (provide make-gui) (define (make-gui) - (begin - ;;Create the frame + ;;Create the frame/window with title "Example5", width 500 and height 700 (define main-frame (new frame% [label "Example5"] [width 500] @@ -144,7 +143,7 @@ (else (error "Invalid Request" command)) )) ;;dispatch goes below that - dispatch)) + dispatch) ;This one displays information |