3
我嘗試執行用DrRacket環境提供的其中一種教學語言(例如Beginning Student)編寫的腳本。執行球拍在終端中開始學生腳本而不包裹在模塊中
我可以通過包裝的代碼到一個模塊中(就像DrRacket一樣)實現這一目標:
#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
然而,這將是對我更傾向於不換我的代碼到一個模塊中。是否有可能通過傳遞命令行參數(或以任何其他方式)來實現該目標?
這個解決方案已經足夠滿足我的需求了,謝謝。你能分享一個鏈接到文檔部分,揭示一個'asl','bsl','bsl +','isl','isl +'list? – Robson
事實上,我只是通過挖掘'Racket \ share \ pkgs \ htdp-lib \ htdp'才發現它。 –