rf-web/vendor/bundle/gems/rouge-3.12.0/lib/rouge/demos/swift
2019-10-21 10:18:17 +02:00

6 lines
139 B
Plaintext

// Say hello to poeple
func sayHello(personName: String) -> String {
let greeting = "Hello, " + personName + "!"
return greeting
}