Skip to content

Instantly share code, notes, and snippets.

@JavierCane
Created October 23, 2017 07:38
Show Gist options
  • Save JavierCane/f187fb70d07e2cf6299608cc2dd1b0e2 to your computer and use it in GitHub Desktop.
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/
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