Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Selecting student language in Racket source code

Tags:

racket

htdp

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?

like image 716
Giorgio Avatar asked Aug 18 '13 20:08

Giorgio


1 Answers

You should be able to use

#lang htdp/bsl

(or htdp/bsl+, htdp/isl, htdp/isl+, or htdp/asl) but it's "not in a complete shape, yet".

like image 165
Chris Jester-Young Avatar answered Sep 20 '22 03:09

Chris Jester-Young