Lambda expression or anonymous function is a function that is not declared but passed as expression.
In previous example we demonstrated usage of lambda function passed as an argument to other function.
One good example of expression can be the following:
fun welcome(e: Employee): String = println("Welcome ${e.name} ${e.lastName}")