next up previous contents
Next: File ``errormsg.scm'' Up: Appendix B: Listing Previous: Appendix B: Listing   Contents

File ``main.scm''

;;--------------------------------------------------------------------------
;; AriNET Project in Informatics IA by Dominique Guinard
;; dominique.guinard@unifr.ch
;;--------------------------------------------------------------------------
;; Main
;;--------------------------------------------------------------------------

; ------------------------------------------------------------
; ABSTRACT:
; *********
; The aim of this file is to load the different elements and
; requiered libraries of AriNET.
; ------------------------------------------------------------


; ------------------------------------------------------------
; Required
; ------------------------------------------------------------

(require (lib "framework.ss" "framework"))


; ------------------------------------------------------------
; To load
; ------------------------------------------------------------
(load "errormsg.scm")
(load "aboutbox.scm")
(load "gui_helper.scm")
(load "valuedialogs.scm")
(load "environment.scm")
(load "infix_to_prefix.scm")
(load "prefix_to_arinet.scm")
(load "arinet.scm")
(load "myeval.scm")
(load "read_eval_print.scm")
(load "global_values.scm")

; ------------------------------------------------------------
; Main function
; ------------------------------------------------------------

(define (main)
  (application:current-app-name "AriNET")
  (setup-transcript)
  ;opening an Editor Window
  (my-open-editor 0 0)
  (about-box)
  )

(main)

;;--------------------------------------------------------------------------
;; end of main
;;--------------------------------------------------------------------------



dominique 2003-06-02