tomo/test/lambdas.tm

10 lines
133 B
Tcl

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