Multiplication Table by uru

package
main
import."fmt"func
main(){for i:=1;i<13;i++{for j:=1;j<13;j++{Printf("%3d%c",i*j,32-j/12*22)}}}

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

download

return to the top page