Mwnci lcm() Function

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