Skip to content

Instantly share code, notes, and snippets.

@jjuliano
Created June 2, 2019 22:07
Show Gist options
  • Save jjuliano/33ca892c4f97a1f837f9e82bd685bc28 to your computer and use it in GitHub Desktop.
Save jjuliano/33ca892c4f97a1f837f9e82bd685bc28 to your computer and use it in GitHub Desktop.
count := 2
a := [3]string{"a", "b", "c"}
for x := 0; x < count; x++ {
for i := 0; i < len(a); i++ {
fmt.Println(a[i])
}
}
/*
a
b
c
a
b
c
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment