1 2 3 4 5 6 7 8 9 10 11 12
--- name: "math/lcm" module: "math" section: "Integer Math" --- Least common multiple. ```sema (math/lcm 4 6) ; => 12 (math/lcm 3 5) ; => 15 ```