29 lines
429 B
Go
29 lines
429 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
// STORY:
|
|
// You want to compare two bookcases,
|
|
// whether they're equal or not.
|
|
|
|
func main() {
|
|
type (
|
|
bookcase [5]int
|
|
cabinet [5]int
|
|
)
|
|
|
|
blue := bookcase{6, 9, 3, 2, 1}
|
|
red := cabinet{6, 9, 3, 2, 1}
|
|
|
|
fmt.Print("Are they equal? ")
|
|
|
|
if cabinet(blue) == red {
|
|
fmt.Println("✅")
|
|
} else {
|
|
fmt.Println("❌")
|
|
}
|
|
|
|
fmt.Printf("blue: %#v\n", blue)
|
|
fmt.Printf("red : %#v\n", bookcase(red))
|
|
}
|