Used to compare two values. Returns a boolean `true` or `false`. `==`, `!=`, `>`, `<`, `>=`, `<=`.
Conditional logic.
Comparing variables.
x := 5
y := 3
fmt.Println(x > y) // true
fmt.Println(x == y) // false
Pointers compare equal if they point to the same address.