roc/examples/hello-swift/Hello.roc

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)"