mirror of
https://github.com/anoma/juvix.git
synced 2024-11-30 14:13:27 +03:00
7 lines
135 B
Plaintext
7 lines
135 B
Plaintext
|
-- Integer arithmetic
|
||
|
module test003;
|
||
|
|
||
|
import Stdlib.Prelude open;
|
||
|
|
||
|
main : Nat := mod 3 2 + div 18 4 + mod 18 4 + div 16 4 + mod 16 4;
|