akkajdh999@programming.devtoLinux@lemmy.ml•what do you think of people who use linux but use non-linux related stuff as their wallpaper??
16·
18 hours agoI think they might be using linux for something else other than taking screenshots and being fanboys
In Go “==” operator works for everything by default, I like it more:
type A struct { Name string Quality int } func main() { var x A var y A fmt.Printf("%v", x == y) }
(if all you want is to compare all corresponding fields which you usually want)