Multiplication tables: Difference between revisions

Content added Content deleted
Line 5,630: Line 5,630:
12| 144
12| 144
</pre>
</pre>

=={{header|Phixmonti}}==
<syntaxhighlight lang="Phixmonti">/# Rosetta Code problem: https://rosettacode.org/wiki/Multiplication_tables
by Galileo, 11/2022 #/

def tab 9 tochar print enddef

tab 10 tcolor
12 for print tab endfor nl
12 for 10 tcolor
dup print tab 15 tcolor
dup for
over * print tab
endfor
drop nl
endfor</syntaxhighlight>
{{out}}
<pre> 1 2 3 4 5 6 7 8 9 10 11 12
1 1
2 2 4
3 3 6 9
4 4 8 12 16
5 5 10 15 20 25
6 6 12 18 24 30 36
7 7 14 21 28 35 42 49
8 8 16 24 32 40 48 56 64
9 9 18 27 36 45 54 63 72 81
10 10 20 30 40 50 60 70 80 90 100
11 11 22 33 44 55 66 77 88 99 110 121
12 12 24 36 48 60 72 84 96 108 120 132 144

=== Press any key to exit ===</pre>


=={{header|Picat}}==
=={{header|Picat}}==
Line 5,673: Line 5,705:
11 | 121 132
11 | 121 132
12 | 144</pre>
12 | 144</pre>



=={{header|PicoLisp}}==
=={{header|PicoLisp}}==