Multiplication tables: Difference between revisions

Line 3,169:
<lang ring>
multiplication_table(12)
 
func multiplication_table n
nSize = 4 See " | "
Line 3,179 ⟶ 3,178:
see nl
next
 
func fsize x,n return string(x) + copy(" ",n-len(string(x)))
</lang>