ligo/gitlab-pages/docs/language-basics/src/math-numbers-tez/division.ligo

5 lines
112 B
Plaintext
Raw Normal View History

const a: int = 10 / 3;
const b: nat = 10n / 3n;
const c: nat = 10mutez / 3mutez;
const d: int = 10 / 5 / 2 * 5;