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