Here is an instance of a lambda expression that takes a string and converts all characters to upper case:
val uppercase:(String) -> String = {s -> s.uppercase()}
Change the lambda expression (the right part) to a function reference which does the same.