2019-10-25 16:12:54 -07:00
|
|
|
(* Test CameLIGO bitwise operators *)
|
|
|
|
|
|
|
|
let or_op (n : nat) : nat =
|
2019-10-27 12:05:34 -07:00
|
|
|
Bitwise.lor n 4p
|
2019-10-25 16:12:54 -07:00
|
|
|
|
|
|
|
let and_op (n : nat) : nat =
|
2019-10-27 12:05:34 -07:00
|
|
|
Bitwise.land n 7p
|
2019-10-25 16:12:54 -07:00
|
|
|
|
|
|
|
let xor_op (n : nat) : nat =
|
2019-10-27 12:05:34 -07:00
|
|
|
Bitwise.lxor n 7p
|