1
1
mirror of https://github.com/anoma/juvix.git synced 2024-11-30 14:13:27 +03:00
juvix/tests/Rust/Compilation/positive/test025.juvix
2024-07-02 10:03:06 +02:00

17 lines
333 B
Plaintext

-- Euclid's algorithm
module test025;
import Stdlib.Prelude open;
terminating
gcd : Nat → Nat → Nat
| a b :=
ite (a > b) (gcd b a) (ite (a == 0) b (gcd (mod b a) a));
main : Nat :=
gcd (3 * 7 * 2) (7 * 2 * 11)
+ gcd (3 * 7 * 2 * 11 * 5) (7 * 2 * 5)
+ gcd 3 7
+ gcd 7 3
+ gcd (11 * 7 * 3) (2 * 5 * 13);