Remove block skips.
This commit is contained in:
parent
e14dd18680
commit
560ae6e0bc
@ -1,16 +1,16 @@
|
|||||||
// Test PascaLIGO bitwise operators
|
// Test PascaLIGO bitwise operators
|
||||||
|
|
||||||
function or_op (const n : nat) : nat is
|
function or_op (const n : nat) : nat is
|
||||||
begin skip end with bitwise_or(n , 4n)
|
bitwise_or(n , 4n)
|
||||||
|
|
||||||
function and_op (const n : nat) : nat is
|
function and_op (const n : nat) : nat is
|
||||||
begin skip end with bitwise_and(n , 7n)
|
bitwise_and(n , 7n)
|
||||||
|
|
||||||
function xor_op (const n : nat) : nat is
|
function xor_op (const n : nat) : nat is
|
||||||
begin skip end with bitwise_xor(n , 7n)
|
bitwise_xor(n , 7n)
|
||||||
|
|
||||||
function lsl_op (const n : nat) : nat is
|
function lsl_op (const n : nat) : nat is
|
||||||
begin skip end with bitwise_lsl(n , 7n)
|
bitwise_lsl(n , 7n)
|
||||||
|
|
||||||
function lsr_op (const n : nat) : nat is
|
function lsr_op (const n : nat) : nat is
|
||||||
begin skip end with bitwise_lsr(n , 7n)
|
bitwise_lsr(n , 7n)
|
Loading…
Reference in New Issue
Block a user