Skip to content

Instantly share code, notes, and snippets.

@v6ak
Created July 17, 2013 16:17
Show Gist options
  • Select an option

  • Save v6ak/6022076 to your computer and use it in GitHub Desktop.

Select an option

Save v6ak/6022076 to your computer and use it in GitHub Desktop.
val CalculatingOperations = Map[String, (Int, Int)=>Int](
"add" -> (_+_),
"multiply" -> (_*_)
)
CalculatingOperations("multiply")(3, 2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment