roc/examples/hello-world/swift-platform/hello_swift.roc
Jan Van Bruggen 589861a88a Re-append newline after "Hello, World!" output
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")
2022-03-07 21:06:53 -07:00

6 lines
112 B
Text

app "hello_swift"
packages { pf: "." }
imports []
provides [ main ] to pf
main = "Hello, World!\n"