mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-18 01:29:47 +00:00
17 lines
468 B
Text
17 lines
468 B
Text
platform "echo-in-rust"
|
|
requires {} { main : _ }
|
|
exposes []
|
|
packages {}
|
|
imports []
|
|
provides [mainForHost]
|
|
|
|
# mainForHost : [StdoutWrite Str (({} -> Op) as Fx0), StderrWrite Str (({} -> Op) as Fx1), Done] as Op
|
|
mainForHost : [StdoutWrite Str ({} -> Op), StderrWrite Str ({} -> Op), Done] as Op
|
|
mainForHost = main
|
|
|
|
# mainForHost : { x: Str, y: {} -> Str }
|
|
# mainForHost =
|
|
# y = "foo"
|
|
#
|
|
# when main is
|
|
# _ -> { x: "bar", y: \{} -> y }
|