On this page:
4.1 Teachpacks
4.2 Environment Variables

4 Extending DrRacket

DrRacket supports two forms of extension to the programming environment:

4.1 Teachpacks

Teachpacks are designed to supplement student programs with code that cannot be expressed in a teaching language. For example, to enable students to play hangman, we supply a teachpack that

All these tasks are beyond students in the third week and/or impose memorization of currently useless knowledge on students. The essence of the hangman game, however, is not. The use of teachpacks enables the students to implement the interesting part of this exercise and still be able to enjoy today’s graphics without the useless memorization.

A single Racket source file defines a teachpack (although the file may access other files via require). The file must contain a module (see Modules). Each exported syntax definition or value definition from the module is provided as a new primitive form or primitive operation to the user, respectively.

As an example, the following teachpack provides a lazy cons implementation. To test it, save the following in a file and add the file as a teachpack (or use require).

  #lang racket
  
  (provide (rename-out [:lcons lcons]) lcar lcdr)
  
  (define-struct lcons (hd tl))
  
  (define-syntax (:lcons stx)
    (syntax-case stx ()
      [(_ hd-exp tl-exp)
       #'(make-lcons
                 (delay hd-exp)
                 (delay tl-exp))]))
  
  (define (lcar lcons) (force (lcons-hd lcons)))
  (define (lcdr lcons) (force (lcons-tl lcons)))

Then, in this program:

  (define (lmap f l)
    (lcons
     (f (lcar l))
     (lmap f (lcdr l))))
  
  (define all-nums (lcons 1 (lmap add1 all-nums)))

the list all-nums is bound to an infinite list of ascending numbers.

For more examples, see the "htdp" sub-collection in the "teachpack" collection of the PLT installation.

4.2 Environment Variables

Several environment variables can affect DrRacket’s behavior: