Warning, /education/kturtle/scripts/timetables.turtle is written in an unsupported language. File is not indexed.

0001 kturtle-script-v1.0
0002 #print time tables
0003 @(reset)
0004 @(penup)
0005 @(go) 10@(,)0
0006 
0007 $n = @(ask) "Enter the number for which I will print the time tables"
0008 
0009 @(for) $x=0 @(to) 10 {
0010   @(backward) 20
0011   $r = $x * $n
0012   @(print) $x+" * "+$n+" = "+$r
0013 }
0014 @(spritehide)
0015 @(backward) 40