Simple lambda test

This commit is contained in:
Bruce Hill 2024-03-09 14:03:42 -05:00
parent 955f047e06
commit dfd38cdb69

6
test/lambdas.tm Normal file
View File

@ -0,0 +1,6 @@
>> add_one := func(x:Int) x + 1
>> add_one
>> add_one(10)
= 11