Files
zern/examples/euler4.zr
2025-08-03 10:37:18 +02:00

13 lines
372 B
Plaintext

func main[] : I64
let out: I64 = 0
for a in 500..1000
for b in 500..1000
if a * b > out
let s: String = str.from_i64(a * b)
let s_rev: String = str.reverse(s)
if str.equal(s, s_rev)
out = a * b
mem.free(s)
mem.free(s_rev)
io.print_i64(out)