mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 13:59:08 +00:00
10 lines
170 B
Text
10 lines
170 B
Text
app "hello-swift"
|
|
packages { pf: "platform" }
|
|
imports []
|
|
provides [ main ] to pf
|
|
|
|
main =
|
|
host = "Swift"
|
|
app = "Roc"
|
|
|
|
"Hello \(host), meet \(app)"
|