Reputation: 650
When I am trying to run an evaluator in Dr. Racket, it shows the error: 'Module Language: there can only be one expression in the definitions window'.
Obviously there are multiple definitions in this window, an evaluator has multiple definitions, so how can I run these multiple definitions ? or is there any other method to run the evaluators.
Any help would be appreciated.
Upvotes: 2
Views: 7155
Reputation: 780
I am new to Racket, and when I was trying to run my very first program I too encountered this error.
I added #lang racket/base
at the beginning of the source code and it solved this problem.
Upvotes: 6
Reputation: 650
#lang r5rs
resolve set-car! problem, but error was unknown this time. I resolved this by (#%require (only scheme/base error)).
So I add these two lines to make my evaluator run:
#lang r5rs
(#%require (only scheme/base error))
Upvotes: 1