UNPKG

lml-main

Version:

This is now a mono repository published into many standalone packages.

15 lines (14 loc) 256 B
module.exports = { 'name': 'lcm', 'category': 'Arithmetic', 'syntax': [ 'lcm(x, y)' ], 'description': 'Compute the least common multiple.', 'examples': [ 'lcm(4, 6)', 'lcm(6, 21)', 'lcm(6, 21, 5)' ], 'seealso': [ 'gcd' ] };