1

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

Flux
  • 9,805
  • 5
  • 46
  • 92
user13
  • 351
  • 3
  • 17

1 Answers1

0

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?

Georg Fuss
  • 315
  • 2
  • 9
  • I am using Windows 8. – user13 Jan 14 '18 at 22:49
  • Do you write it for ubuntu? Because in windows typing "scheme" brings a response that it is not an internal or external command... – user13 Jan 14 '18 at 22:54
  • this answer is wrong. I installed MIT Scheme; typed the code form by form into the same "big empty space" as shown in the question, pressing C-x-e after each, and [it worked](https://imgur.com/a/fzKEd) as an "interactive shell". The only difference is, I installed it on Win-7 box. – Will Ness Jan 16 '18 at 10:47