Created
October 23, 2017 07:43
-
-
Save JavierCane/1cbd0194620e6a9058eec69fd347a76a to your computer and use it in GitHub Desktop.
Currying example for the CodelyTV Pro Scala course π https://pro.codely.tv/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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