1 2 3 4 5
def fun_a() => print("hello world") def fun_b(x: Int) => print("hello {x}") fun_a() fun_b(123)