mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 22:09:09 +00:00
10 lines
212 B
Text
10 lines
212 B
Text
platform examples/add
|
|
requires {}{ main : I64 -> I64 }
|
|
exposes []
|
|
packages {}
|
|
imports []
|
|
provides [ mainForHost ]
|
|
effects fx.Effect {}
|
|
|
|
mainForHost : I64 -> I64
|
|
mainForHost = \a -> main a
|