Bitwise operations: Difference between revisions

m
→‎{{header|PL/I}}: missing comment delimiters
m (→‎{{header|PL/I}}: missing comment delimiters)
Line 4,416:
u = s ^ t; /* exclusive or */
 
/* Built-in rotate functions are not available. */
/* They can be readily implemented by the user, though: */
 
u = substr(s, length(s), 1) || substr(s, 1, length(s)-1); /* implements rotate right. */
3,049

edits