I try to execute a script written in one of the Teaching Languages (e.g. Beginning Student) delivered with DrRacket environment.
I can achieve that by wrapping the code into a module (just like DrRacket does):
#reader(lib "htdp-beginner-reader.ss" "lang")((modname my_module) (read-case-sensitive #t) (teachpacks ()) (htdp-settings #(#t constructor repeating-decimal #f #t none #f () #f)))
;; my code goes here
However, it would be much more preferred for me not to wrap my code into a module. Is it possible to achieve that by passing command line arguments (or in any other way)?