Question #142

Author: admin
tags: Go  
package main

import "fmt"

func main() {
	x1 := [4]int{1, 2, 3, 4}
	x2 := [4]int{1, 2, 3, 4}

	fmt.Println(x1 == x2)
}
What will be printed?
true
false
invalid operation: slice can only be compared to nil
Rate the difficulty of the question:
easyhard