swift - hello-world

This commit is contained in:
2018-09-16 16:52:49 -04:00
parent 1641d23312
commit df9ede25ca
6 changed files with 84 additions and 0 deletions

View File

@ -0,0 +1,6 @@
//Solution goes in Sources
class HelloWorld {
class func hello(_ name: String = "World") -> String {
return "Hello, \(name)!"
}
}