Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Last active March 8, 2018 04:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/412fc816506e67c782db1dd11d6652c1 to your computer and use it in GitHub Desktop.
Save parzibyte/412fc816506e67c782db1dd11d6652c1 to your computer and use it in GitHub Desktop.
package main
import "fmt"
func main() {
numeros := [...]int {18, 28, 21, 96, 97}
longitud := len(numeros)
for i := 0; i < longitud; i++ {
fmt.Println(numeros[i])
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment