mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-04 12:18:19 +00:00
17 lines
360 B
Text
17 lines
360 B
Text
platform "test-platform"
|
|
requires {} { main : _ }
|
|
exposes []
|
|
packages {}
|
|
imports []
|
|
provides [mainForHost]
|
|
|
|
Tool : [SystemTool { name: Str }]
|
|
|
|
Command : [Command { tool : Tool, args: List Str }]
|
|
|
|
Job : [Job { command : Command, job: List Job, inputFiles : List Str }, Blah Str]
|
|
|
|
Rbt : { default: Job }
|
|
|
|
mainForHost : Rbt
|
|
mainForHost = main
|