mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 13:59:08 +00:00
9 lines
260 B
Text
9 lines
260 B
Text
platform "cli"
|
|
requires {} { main : InternalProgram }
|
|
exposes []
|
|
packages {}
|
|
imports [Effect.{ Effect }, InternalProgram.{ InternalProgram }]
|
|
provides [mainForHost]
|
|
|
|
mainForHost : Effect U8 as Fx
|
|
mainForHost = InternalProgram.toEffect main
|