>> add_one := func(x:Int) x + 1 >> add_one >> add_one(10) = 11 >> shout := func(msg:Text) say("{msg:upper()}!") >> shout("hello")