Warning, /education/kturtle/scripts/if-test.turtle is written in an unsupported language. File is not indexed.
0001 kturtle-script-v1.0
0002 @(reset)
0003 $a = 0
0004 @(repeat) 2 {
0005 $a=$a+1
0006 @(if) $a==1 {
0007 @(print) "If odd value ok"
0008 }
0009 @(forward) 15
0010 @(if) $a==2 {
0011 @(print) "If even value ok"
0012 }
0013 @(forward) 15
0014 }