Skip to content

Instantly share code, notes, and snippets.

@shigemk2
Created March 18, 2015 12:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shigemk2/46322867862bdee6bf4b to your computer and use it in GitHub Desktop.
Save shigemk2/46322867862bdee6bf4b to your computer and use it in GitHub Desktop.
def f(x: Int): Int = x * 2
def g(x: Int, y: Int): Int = x + y
println(f(g(1, 2)))
// println((g _).compose(f)(1)(2))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment