or operator in golang code example
Example 1: go operators
+ addition
- subtraction
* multiplication
/ quotient
% remainder
& bitwise and
| bitwise or
^ bitwise xor
&^ bit clear (and not)
<< left shift
>> right shift
Example 2: go logical operators
&& logical and
|| logical or
! logical not