This commit is contained in:
hyung-hwan 2007-12-24 01:48:40 +00:00
parent 9324220c41
commit e707057736

View File

@ -195,4 +195,10 @@ BEGIN {
}
}}}
== Shift Operators ==
Turning on ASE_AWK_SHIFT enables the use of the shift operator for bit shifting. >> and << are the right and the left shift operator respectively.
{{{
BEGIN { print (0xFFFF >> 2); print 0x00FF << 2; }
}}}