Section8-72

This commit is contained in:
2023-11-08 12:29:48 +01:00
parent 534827c954
commit d9515dfc6d
3 changed files with 82 additions and 0 deletions

10
Section8/70.go Normal file
View File

@@ -0,0 +1,10 @@
package main
import "fmt"
func main() {
var numbers [4]int
fmt.Printf("%v\n", numbers)
fmt.Printf("%#v\n", numbers)
}