mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-11 16:51:53 +03:00
11 lines
245 B
Plaintext
11 lines
245 B
Plaintext
app "rocLovesRust"
|
|
packages { pf: "rust-platform/main.roc" }
|
|
imports []
|
|
provides [main] to pf
|
|
|
|
main =
|
|
msg = "Roc <3 Rust, also on stderr!\n"
|
|
StdoutWrite "Roc <3 Rust!\n" \{} ->
|
|
StderrWrite msg \{} ->
|
|
Done
|