RosettaCodeData/Task/Bitwise-operations/PicoLisp/bitwise-operations-5.l

12 lines
77 B
Text
Raw Permalink Normal View History

2013-04-10 16:19:29 -07:00
: (>> 1 8)
-> 4
: (>> 3 16)
-> 2
: (>> -3 16)
-> 128
: (>> -1 -16)
-> -32