aboutsummaryrefslogtreecommitdiffhomepage
path: root/samples/rosetta/least_common_multiple.bruijn
blob: 9a6c08eb08b9097d86f900df14368cb94490b660 (plain) (blame)
1
2
3
4
5
6
7
8
:import std/Math .

lcm [[=?1 1 (=?0 0 |(1 / (gcd 1 0) ⋅ 0))]]

:test ((lcm (+12) (+18)) =? (+36)) ([[1]])
:test ((lcm (+42) (+25)) =? (+1050)) ([[1]])

main [[0]]