ligo/test/contracts/bitwise_arithmetic.ligo
2019-09-09 11:47:42 +02:00

9 lines
249 B
Plaintext

function or_op (const n : nat) : nat is
begin skip end with bitwise_or(n , 4n)
function and_op (const n : nat) : nat is
begin skip end with bitwise_and(n , 7n)
function xor_op (const n : nat) : nat is
begin skip end with bitwise_xor(n , 7n)