mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 14:54:47 +00:00
8 lines
150 B
Text
8 lines
150 B
Text
app "closure" provides [ makeClosure ] to "./platform/"
|
|
|
|
makeClosure : ({} -> I64) as MyClosure
|
|
makeClosure =
|
|
x = 42
|
|
y = 42
|
|
|
|
\{} -> x + y
|