operator precedence 1



operator_precedence1
Smart pascal source code
var a := 3; var b := 5; WriteLn(not a + b); WriteLn(not a * b); WriteLn(a + b shl 2); WriteLn(b shl 2 + a); WriteLn(a shr b + 2); WriteLn(2 + a shr b); WriteLn(a and b or 2); WriteLn(a or b and 2); {<<< RESULT - CONSOLE LOG >>> ----------------------------- 1 -20 23 23 2 2 3 3 ----------------------------- {<<<<<<<<< THE END >>>>>>>>>}