Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created October 31, 2020 23:20
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/0d902c8e613e50f68032cfef5399268f to your computer and use it in GitHub Desktop.
Save parzibyte/0d902c8e613e50f68032cfef5399268f to your computer and use it in GitHub Desktop.
package main
import "fmt"
func main() {
var numeros [5]int
numeros[0] = 123
fmt.Printf("En la 0 tenemos %d", numeros[0])
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment