Skip to content

Instantly share code, notes, and snippets.

@yvt
Created October 29, 2013 05:09
Show Gist options
  • Save yvt/7209416 to your computer and use it in GitHub Desktop.
Save yvt/7209416 to your computer and use it in GitHub Desktop.
Queen カリー化
func AddTwo(a: int): func<(int): int>
class C
var a: int
func Eval(b: int): int
return a + b
end func
end class
var c:: #C
c.a :: a
return c.Eval
end func
func AppMain()
Dbg@Log(AddTwo(3)(5))
end func
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment