Home »
Code Examples »
Scala Code Examples
Scala - Methods Without Parentheses and Dots Code Example
The code for Methods Without Parentheses and Dots
// Function to check isEVEN
def isEven(n: Int) = (n % 2) == 0
// Filtering EVEN number
List(1, 2, 3, 4) filter isEven foreach println
Code by IncludeHelp,
on August 8, 2022 01:09