gokursu/arrays/demo2.go
2024-01-08 17:24:36 +03:00

14 lines
No EOL
208 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package arrays
import "fmt"
func Demo2() {
var cities [5]string
cities[0] = "Ankara"
cities[1] = "İstanbul"
cities[2] = "İzmir"
cities[3] = "Adana"
cities[4] = "Diyarbakır"
fmt.Println(cities)
}