Consider the following program: ```scala import stringbuffer def prompt_for_user_name(): String = { println("What's your name?") readln() } def main() = { val username = prompt_for_user_name() println(s"Hello ${username}") } ``` Output: ```console > ./out/foo What's your name? xxx Hello xxx > effekt foo.effekt xxx What's your name? Hello xxx ```