mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-04 00:54:36 +00:00

See https://github.com/rtfeldman/roc/pull/2470#discussion_r821295601 (@rtfeldman has "seen some terminals get really unhappy if a program prints things and doesn't print a newline to stdout before exiting")
6 lines
112 B
Text
6 lines
112 B
Text
app "hello_swift"
|
|
packages { pf: "." }
|
|
imports []
|
|
provides [ main ] to pf
|
|
|
|
main = "Hello, World!\n"
|