12 lines
207 B
Go
12 lines
207 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
names := [...]string{"Einstein", "Shepard", "Tesla"}
|
|
books := [5]string{"Kafka's Revenge", "Stay Golden"}
|
|
|
|
fmt.Printf("%q\n", names)
|
|
fmt.Printf("%q\n", books)
|
|
}
|