Created
January 8, 2026 13:19
-
-
Save pablocattaneo/248e6df09cb8b723d8b5af7ea319689c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| fruits := [4]string{"Apple", "Banana", "Orange", "Grapes"} | |
| for index, fruit := range fruits { | |
| fmt.Println(position, fruitName) | |
| } | |
| for i, v := range fruits { | |
| fmt.Println(i, v) | |
| } | |
| for position, fruitName := range fruits { | |
| fmt.Println(position, fruitName) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment