Skip to content

Instantly share code, notes, and snippets.

@ELLIOTTCABLE
Created May 14, 2011 11:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ELLIOTTCABLE/972114 to your computer and use it in GitHub Desktop.
Save ELLIOTTCABLE/972114 to your computer and use it in GitHub Desktop.
(module wheeeee r6rs (#%module-begin (library (wheeeee (1 1))
(export run)
(import (library (rnrs base (6)) ))
; implementation of `run`
(define (run a)
(printf "running!\n") )
)) (#%module-begin
(import (library (wheeeee (1 1)) ))
(run "foo")
) )
some-r6rs.rkt:1:22: top-level-program: expected an `import' declaration, found
something else in: (#%module-begin (library (wheeeee (1 1)) (export run) (import
(library (rnrs base (6)))) (define (run a) (printf
"running!\n"))))
=== context ===
standard-module-name-resolver
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment