#100
Least Common Multiple
 

Difficulty:Easy
Topics:math


Write a function which calculates the least common multiple. Your function should accept a variable number of positive integers or ratios.
test not run
(== (__ 2 3) 6)
test not run
(== (__ 5 3 7) 105)
test not run
(== (__ 1/3 2/5) 2)
test not run
(== (__ 3/4 1/6) 3/2)
test not run
(== (__ 7 5/7 2 3/5) 210)


Code which fills in the blank: