ligo/src/test/contracts/bitwise_arithmetic.ligo

16 lines
453 B
Plaintext
Raw Normal View History

// Test PascaLIGO bitwise operators
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)
2020-02-06 16:17:33 +01:00
function lsl_op (const n : nat) : nat is
begin skip end with bitwise_lsl(n , 7n)
function lsr_op (const n : nat) : nat is
begin skip end with bitwise_lsr(n , 7n)