tomo/test/lambdas.tm
2024-03-09 14:12:15 -05:00

13 lines
160 B
Tcl

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