roc/examples/glue/glue.roc

11 lines
245 B
Plaintext
Raw Normal View History

2023-03-01 23:56:25 +03:00
app "rocLovesRust"
packages { pf: "rust-platform/main.roc" }
imports []
provides [main] to pf
main =
2023-06-19 23:09:35 +03:00
msg = "Roc <3 Rust, also on stderr!\n"
2023-03-01 23:56:25 +03:00
StdoutWrite "Roc <3 Rust!\n" \{} ->
2023-06-19 21:54:06 +03:00
StderrWrite msg \{} ->
2023-03-01 23:56:25 +03:00
Done