opérateurs de go

+	addition
-	subtraction
*	multiplication
/	quotient
%	remainder
&	bitwise and
|	bitwise or
^	bitwise xor
&^	bit clear (and not)
<<	left shift
>>	right shift
DevLorenzo