deelang/blockexample.dee

15 lines
255 B
Plaintext
Raw Normal View History

2021-11-25 11:09:29 -06:00
fun <- ->
do-something()
do-something-else()
foo <- ->
bar <- ->
baz <- ->
print("Deep in here")
print ("Inside foo but not in baz or bar")
foo() ## Inside foo but not in baz or bar
add <- x -> y ->
return x + y