1dd SourceSave
2como fazer tabela sqlSQL By Me (Powerful Pintail) on Jun 23 2021 Comment
3import Foundation
4func isstring(word: String) -> String {
5 if word.hasPrefix("Is") == true
6 {
7 return word
8 }
9 else
10 {
11 return "Is \(word)"
12 }
13}
14
15print(isstring(word: "Swift"))
1import Foundation
2func isstring(word: String) -> String {
3 if word.hasPrefix("Is") == true
4 {
5 return word
6 }
7 else
8 {
9 return "Is \(word)"
10 }
11}
12
13print(isstring(word: "Swift"))
14
15
16
17
18