5 lines
63 B
Text
5 lines
63 B
Text
lcm: function [x,y][
|
|
x * y / gcd @[x y]
|
|
]
|
|
|
|
print lcm 12 18
|