Created
May 4, 2017 22:45
-
-
Save LeifAndersen/ebe33eb048eafc6e95919e7abfb03aeb to your computer and use it in GitHub Desktop.
Any oddness
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 scratch | |
| (module untyped racket | |
| (provide u) | |
| (define (u . x) | |
| x)) | |
| (module typed typed/racket | |
| (require/typed (submod ".." untyped) | |
| [u Any]) | |
| (provide u)) | |
| (require 'typed) | |
| (u #t 5 "hello" 'world) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment