mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-03 00:24:34 +00:00
9 lines
214 B
Text
9 lines
214 B
Text
platform "echo-in-zig"
|
|
requires {} { main : Str }
|
|
exposes []
|
|
packages {}
|
|
imports []
|
|
provides [mainForHost]
|
|
|
|
mainForHost : { bar: Str, foo: I64 -> I64 }
|
|
mainForHost = { bar: main, foo: \x -> x }
|