Multiplication tables: Difference between revisions

GP
(Added BBC BASIC)
(GP)
Line 1,347:
done;
print_newline()</lang>
 
=={{header|PARI/GP}}==
Quick and dirty one-liner:
<lang parigp>for(y=1,12,printf("%2Ps| ",y);for(x=1,12,print1(if(y>x,"",x*y)"\t"));print)</lang>
 
=={{header|Perl}}==