exercism/swift/hello-world/Sources/HelloWorld.swift

7 lines
146 B
Swift
Raw Normal View History

2018-09-16 16:52:49 -04:00
//Solution goes in Sources
class HelloWorld {
class func hello(_ name: String = "World") -> String {
return "Hello, \(name)!"
}
}