Launching MIT Scheme

631 views Asked by At

Can you help me to figure out how to use MIT Scheme? The Edwin editor. There is a huge field to type but it doesn't respond. It allows me to evaluate expressions in the bottom tiny field only when I type esc twice in a row.enter image description here

1

There are 1 answers

3
Georg Fuss On BEST ANSWER

Edwin is an editor; it is not a interactive shell. The big empty space is used to write a scheme file. I think you to work in an interactive shell.

Open a console window and type "scheme" to work in an interactive shell. To write a scheme-program-file you can use an editor in ascii-mode. Use the suffix "scm" to store the file. To run it, type in the scheme-shell:

(load "start.scm")

40 years ago scheme and edwin were distributed by texas instruments. With these tools I started to love programming. Today I am working under ubuntu and I am using emacs as editor and a bash-shell running MIT/Gnu-Scheme. 5 year ago tryed edwin agin, but I preferd emacs.

The most people would suggest to use DrRacket. What Operation System you are using?