mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 22:34:45 +00:00
14 lines
247 B
Text
14 lines
247 B
Text
app "app"
|
|
packages { pf: "platform.roc" }
|
|
imports []
|
|
provides [main] to pf
|
|
|
|
main = {
|
|
default: Job {
|
|
command: Command {
|
|
tool: SystemTool { name: "test", num: 42 }
|
|
},
|
|
inputFiles : ["foo"]
|
|
}
|
|
}
|
|
|