Created
February 2, 2013 18:05
-
-
Save takikawa/4698623 to your computer and use it in GitHub Desktop.
Submodules in scribble/lp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #lang scribble/lp | |
| @chunk[<a> (module main racket (provide x) (define x 3))] | |
| @chunk[<b> (module test racket | |
| (require rackunit (submod ".." main)) | |
| (check-equal? x 3))] | |
| @chunk[<*> (begin <a> <b>)] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment