mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-18 01:29:47 +00:00
9 lines
232 B
Text
9 lines
232 B
Text
platform "false-interpreter"
|
|
requires {} { main : Str -> Task {} [] }
|
|
exposes []
|
|
packages {}
|
|
imports [Task.{ Task }]
|
|
provides [mainForHost]
|
|
|
|
mainForHost : Str -> Task {} [] as Fx
|
|
mainForHost = \file -> main file
|