Multiplication Table by pooq

for i=1,12 do for j=1,12 do io.write(("%3d%c"):format(i*j,(j<12)and 32 or 10))end end

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page