On this page:
<LiterateExpressions>
<LiterateExpressions_requires>
<LiterateExpressions_provide>

1 Using Racket

Now that it has come back [for a time at least] into the kitchen, the bigger idea is to take a literate programming approach to the project. Thus, the name "LiterateExpressions," captures both the flavor of the project and my approach to coding it up. This means that in part, LiterateExpressions is an exercise in using Racket’s scribble documentation language and exploring it’s domain specific subset for literate programming.

(require "Lexp-structures.rkt")
(require "Lexp-implementation.rkt")
(require "Perl-Modifiers.rkt")
(require "Perl-EscapeSequence.rkt")

(provide (all-defined-out))
(provide
 (all-from-out  "Lexp-structures.rkt")
 (all-from-out "Lexp-implementation.rkt")
 (all-from-out "Perl-Modifiers.rkt")
 (all-from-out "Perl-EscapeSequence.rkt"))