Skip to content

Instantly share code, notes, and snippets.

@takikawa
Created February 2, 2013 18:05
Show Gist options
  • Select an option

  • Save takikawa/4698623 to your computer and use it in GitHub Desktop.

Select an option

Save takikawa/4698623 to your computer and use it in GitHub Desktop.
Submodules in scribble/lp
#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