mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-08 14:18:03 +00:00
9 lines
209 B
Text
9 lines
209 B
Text
platform "false-interpreter"
|
|
requires {} { main! : Str => {} }
|
|
exposes []
|
|
packages {}
|
|
imports []
|
|
provides [main_for_host!]
|
|
|
|
main_for_host! : Str => {}
|
|
main_for_host! = \file -> main!(file)
|