RosettaCodeData/Task/Multiplication-tables/Axe/multiplication-tables.axe
2023-07-01 13:44:08 -04:00

18 lines
186 B
Text

Fix 5
ClrDraw
For(I,1,10)
Text(I-1*9,0,I▶Dec)
Text(91,I*7+1,I▶Dec)
End
For(J,1,8)
For(I,J,10)
Text(I-1*9,J*7+1,I*J▶Dec)
End
End
HLine(7)
VLine(89)
DispGraph
getKeyʳ
Fix 4