Go supports standard arithmetic, relational, logical, and bitwise operators. Operators behave similarly to C/Java.
Performing calculations and logic.
Basic operator usage.
x := 10
y := 5
sum := x + y
isGreater := x > y
fmt.Println(sum, isGreater)
Go does not have a ternary operator (`condition ? true : false`). Use simple `if-else`.