Last active
December 30, 2015 12:19
-
-
Save danking/7827976 to your computer and use it in GitHub Desktop.
My Typed Racket Fantasy
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
| (: some-function : (All ([T = (TerseType A B C D)]) | |
| ((State T) | |
| A | |
| B | |
| -> | |
| (State T)))) | |
| (: some-other-function : (All (T) | |
| (State T) | |
| -> | |
| (State T))) | |
| (: yet-another-function : (All (T) | |
| (State T) | |
| Number | |
| -> | |
| Natural)) |
Author
danking
commented
Dec 6, 2013
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment