Skip to content

Instantly share code, notes, and snippets.

@MaikKlein
Created July 7, 2014 01:27
Show Gist options
  • Save MaikKlein/366f8119e0529f87d60e to your computer and use it in GitHub Desktop.
Save MaikKlein/366f8119e0529f87d60e to your computer and use it in GitHub Desktop.
fn compose<A, B, C>(f : |B| -> C,
g : |A| -> B)
-> |A| -> C{
|x| f(g(x))
}
fn main(){
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment