是否可以顺利运行保存的文件DrRacket
?
例如,如果我将以下行保存在名为test.rkt
with的文件中DrRacket
并希望使用emacs
. 我该怎么做?
(require lang/htdp-intermediate)
; this is a test ; and a box comment-out with a box
;example
(check-expect (doubleN 2) 4)
;define
(define (doubleN nat)
(* 2 nat))
(doubleN 4)