Is it possible to run smoothly files saved by DrRacket
?
for example if I save the following lines in a file called test.rkt
with DrRacket
and want to run it with emacs
. How would I do this?
(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)