diff --git a/language/operators.xml b/language/operators.xml index fff23afa3c..621f780fc5 100644 --- a/language/operators.xml +++ b/language/operators.xml @@ -1,5 +1,5 @@ - + Operators @@ -375,6 +375,12 @@ echo "hallo" ^ "hello"; // Outputs the ascii values #0 #4 #0 #0 #0 + + + Don't right shift for more than 32 bits on 32 bits systems. Don't left shift + in case it results to number longer than 32 bits. + +