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

12 lines
77 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
: (>> 1 8)
-> 4
: (>> 3 16)
-> 2
: (>> -3 16)
-> 128
: (>> -1 -16)
-> -32