OS.listdir

This commit is contained in:
2025-06-03 13:31:04 +02:00
parent 946ab52a19
commit cebc3d1822
5 changed files with 58 additions and 28 deletions

View File

@@ -5,7 +5,7 @@ func main[] : I64
for b in 500:1000
if a * b > out
let s: String = I64.to_string(a * b)
let s_rev: String = strrev(s)
let s_rev: String = String.rev(s)
if strcmp(s, s_rev) == 0
out = a * b
free(s)