Files
zern/examples/euler5.zr

6 lines
113 B
Plaintext

func main[] : I64
let out: I64 = 1
for i in 1..21
out = math.lcm(out, i)
io.println_i64(out)