Created
October 23, 2017 07:38
-
-
Save JavierCane/f187fb70d07e2cf6299608cc2dd1b0e2 to your computer and use it in GitHub Desktop.
Scala higher order functions 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 print( | |
value: String, | |
printer: String => Unit | |
): Unit = printer(value) | |
def printlnPrinter(value: String): Unit = println(value) | |
val printlnPrinterVal = (value: String) => println(value) | |
print("Playing with higher order functions", printlnPrinter) | |
print("Same with functions stored in values", printlnPrinterVal) | |
print("Even with anonymous functions!", (value: String) => println(value)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment