Jump to content

Bitwise operations: Difference between revisions

m
→‎{{header|S-BASIC}}: fixed tag glitch
imported>KayproKid
(Added S-BASIC example)
imported>KayproKid
m (→‎{{header|S-BASIC}}: fixed tag glitch)
Line 5,661:
=={{header|S-BASIC}}==
S-BASIC does not have bitwise shift or rotate operators. The test values are taken from the 11l example.
<syntaxhighlight lang="BASIC">
var a, b = integer
a = 10
Line 5,697:
println("a rol b: " + Integer.rotateRight(a, b)) // Rotate Right
}</syntaxhighlight>
 
=={{header|Scheme}}==
{{Works with|Scheme|R<math>^6</math>RS}}
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.