Multiplication tables: Difference between revisions

No edit summary
Line 3,290:
=={{header|EasyLang}}==
 
<syntaxhighlight lang="easylang">n = 12
n = 12
func out h . .
numfmt 0 4
if h < 10
write " "
elif h < 100
write " "
.
write " "
write h
write " "
for i = 1 to n
call outwrite i
.
print ""
write " "
for i = 1 to n
write "----"
.
print ""
for i = 1 to n
call outwrite i
write "|"
for j = 1 to n
if j < i
write " "
else
call out write i * j
.
.
print ""
.</syntaxhighlight>
 
=={{header|EchoLisp}}==
1,989

edits