문제

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.

도움이 되었습니까?

해결책 2

#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))

다른 팁

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top