Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created March 8, 2018 04:38
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/0dd3543804a761e0d170b06eb20e2253 to your computer and use it in GitHub Desktop.
Save parzibyte/0dd3543804a761e0d170b06eb20e2253 to your computer and use it in GitHub Desktop.
package main
import "fmt"
func main() {
numeros := [...]int {18, 28, 21, 96, 97}
for i := len(numeros) - 1; i >= 0; i-- {
fmt.Println(numeros[i])
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment