Multiplication tables: Difference between revisions

Content added Content deleted
(Added BBC BASIC)
(GP)
Line 1,347: Line 1,347:
done;
done;
print_newline()</lang>
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}}==
=={{header|Perl}}==