ligo/src/contracts/arithmetic.ligo

18 lines
431 B
Plaintext
Raw Normal View History

2019-05-13 00:56:22 +04:00
function mod_op (const n : int) : nat is
begin skip end with n mod 42
function plus_op (const n : int) : int is
begin skip end with n + 42
function minus_op (const n : int) : int is
begin skip end with n - 42
function times_op (const n : int) : int is
begin skip end with n * 42
function div_op (const n : int) : int is
begin skip end with n / 2
function int_op (const n : nat) : int is
block { skip } with int(n)