home *** CD-ROM | disk | FTP | other *** search
- ;;; ScmInit - user startup files.
- ;;; put anything in here if you want it executed on every startup.
- ;;; note that SCM does not echo the fact it is loading this...
-
- (define (ed fname)
- (system (string-append "vi <scm$dir>." fname))
- )
-
-
- ;
- ; Set the gfx origin then call the turtle setup to point it due north,
- ; and move the gfx pen to where we asked the origin to be.
- ;
- (define (go)
- (begin
- (mode 12)
- (graphics-origin! 320 200)
- (init-turtle 320 200 90)
- ))
-
- ; comment this out if you like.
- (display "Loaded ScmInit.")(newline)
-