For loop with Collections
// @clashbyte
fun main(args : Array<String>){
val friends=arrayOf("Hassan","Ahmed","Ibrahim","Husam")
for(friend in friends){
println("$friend is my friend")
}
}INFO
// @clashbyte
fun main(args : Array<String>){
val friends=arrayOf("Hassan","Ahmed","Ibrahim","Husam")
for(friend in friends){
println("$friend is my friend")
}
}