Skip to content

Instantly share code, notes, and snippets.

@JavierCane
Created October 23, 2017 07:43
Show Gist options
  • Save JavierCane/1cbd0194620e6a9058eec69fd347a76a to your computer and use it in GitHub Desktop.
Save JavierCane/1cbd0194620e6a9058eec69fd347a76a to your computer and use it in GitHub Desktop.
Currying example for the CodelyTV Pro Scala course πŸ‘‰ https://pro.codely.tv/
def sum(a: Int)(b: Int): Int = a+ b
def add1(b:Int) = sum(1)(b)
def add2(b:Int) = sum(2)(b)
def add3(b:Int) = sum(3)(b)
val add4 = sum(4)(_)
add2(5)
add4(6)
def printCurrified(printer: String => Unit)(value: String): Unit = printer(value)
def printlnPrinter(value: String): Unit = println(value)
def printStd(value: String) = printCurrified(printlnPrinter)
printStd("See you in the https://pro.codely.tv/ course!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment