Skip to content

Instantly share code, notes, and snippets.

@masatomix
Created March 18, 2020 07:40
Show Gist options
  • Save masatomix/991cf347defc0392ef4d4f6ea0034c53 to your computer and use it in GitHub Desktop.
Save masatomix/991cf347defc0392ef4d4f6ea0034c53 to your computer and use it in GitHub Desktop.
hoge(x: number, y: number, z: number): number {
return x + y + z
}
hoge_curry(x: number): (y: number) => (z: number) => number {
return (y: number): ((z: number) => number) => {
return (z: number): number => {
return x + y + z
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment