RosettaCodeData/Task/Bitwise-operations/Slate/bitwise-operations.slate
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

10 lines
235 B
Text

[ |:a :b |
inform: (a bitAnd: b) printString.
inform: (a bitOr: b) printString.
inform: (a bitXor: b) printString.
inform: (a bitNot) printString.
inform: (a << b) printString.
inform: (a >> b) printString.
] applyTo: {8. 12}.