DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Hackish Way To Get A List Of Module Exports Under PLT
(define (get-provided-names-from-a-module path)
(syntax-property (expand (with-input-from-file (path->string path) read))
'module-variable-provides))





