0

I'm trying to learn scheme with edwin editor on Win7.

I did (define x 3.14). I then typed in "X". Then I ran it using Ctrl X Ctrl E.

I get the message "unbound variable."

Flux
  • 9,805
  • 5
  • 46
  • 92
runners3431
  • 1,425
  • 1
  • 13
  • 30

1 Answers1

1

You should type C-x C-e after the define. It would print back something like

;Value: x

Now that you have defined x, you can type x then C-x C-e, and it should say:

;Value: 3.14

Rptx
  • 1,159
  • 1
  • 12
  • 17