mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 06:14:46 +00:00
9 lines
144 B
Text
9 lines
144 B
Text
app Closure provides [ makeClosure ] imports []
|
|
|
|
makeClosure : ({} -> Int) as MyClosure
|
|
makeClosure =
|
|
x = 42
|
|
y = 42
|
|
|
|
\{} -> x + y
|
|
|