public
Description: An easy way to make web apps (in PLT Scheme)
Homepage: http://blog.leftparen.com
Clone URL: git://github.com/vegashacker/leftparen.git
Click here to lend your support to: leftparen and make a donation at www.pledgie.com !
leftparen / contract-lp.ss
100644 10 lines (5 sloc) 0.252 kb
1
2
3
4
5
6
7
8
9
10
#lang scheme/base
 
;; a one-stop require that handles the "any" conflict with PLT contracts and SRFI 1.
 
(require scheme/contract)
 
(provide (combine-out (except-out (all-from-out scheme/contract) any)
                      (rename-out (any c:any))))