I am trying to write a source file for DrRacket that specifies one of the languages from How to Design Programs Teaching Languages (see the Racket documentation). I know I can select such a language in the DrRacket menu, but I would like to specify it using a #lang
directive and have DrRacket recognize the language automatically.
I cannot find any documentation about the strings that I need to use instead of racket
in the initial line
#lang racket
Where can I find the documentation on this? Or can these languages only be selected from DrRacket's menu?
#lang htdp/bsl
seems to work (+1), even though DrRacket displays the name of the language as "htdp/bsl" instead of "Beginning Student". – Aspia