Syntax
lcm(number,number)
Description
The lcm() function returns the smallest number that is a common multiple of two numbers.
Example
include("math")
println(lcm(4,6))
12
lcm(number,number)
The lcm() function returns the smallest number that is a common multiple of two numbers.
include("math")
println(lcm(4,6))
12