Multiplication tables: Difference between revisions

Content added Content deleted
(Updated D code)
m (add link to Delphi for pascal)
Line 1,389:
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|Pascal}}==
See [[Multiplication_tables#Delphi | Delphi]]
 
=={{header|Perl}}==