Skip to content

Instantly share code, notes, and snippets.

@jonathan-fielding
Created January 6, 2021 21:16
Show Gist options
  • Save jonathan-fielding/28d60a333e4736aa9a848521cf8f02d0 to your computer and use it in GitHub Desktop.
Save jonathan-fielding/28d60a333e4736aa9a848521cf8f02d0 to your computer and use it in GitHub Desktop.
package main
import "fmt"
func main() {
arr := [5]string{"apple", "banana", "cherry", "dates", "elderberry"}
for i := 0; i < len(arr); i++ {
fmt.Println(i, arr[i])
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment