Skip to content

Instantly share code, notes, and snippets.

View f0go's full-sized avatar
🚀

f0go f0go

🚀
View GitHub Profile
var array:Array<String> = ["uno", "dos", "tres"]
var string: String = ""
for i in 0..<array.count{
if i<array.count-1{
string += "\(array[i]), "
}else{
string += (array[i])
}
}
println(string)