mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-15 00:05:02 +00:00
9 lines
201 B
Text
9 lines
201 B
Text
platform "hello-world"
|
|
requires {} { makeItRoc : Str -> Str }
|
|
exposes []
|
|
packages {}
|
|
imports []
|
|
provides [mainForHost]
|
|
|
|
mainForHost : Str -> Str
|
|
mainForHost = \str -> makeItRoc str
|