Question #144

Author: admin
tags: Go  
package main

import "fmt"

type User struct {
	name string
	year int
}

func main() {
	user1 := User{"Albert", 1879}
	user2 := User{year: 1879, name: "Albert"}

	fmt.Println(user1 == user2)
}
What will be printed?
true
false
Nothing
Rate the difficulty of the question:
easyhard