Left over
package main
import "fmt"
func main() {
var a [5]byte
a[0] = 'A'
a[1] = 65
fmt.Println(a)
}
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
package main
import "fmt"
func main() {
var a [5]byte
a[0] = 'A'
a[1] = 65
fmt.Println(a)
}