Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 156 Bytes

testRecursive.toby

File metadata and controls

14 lines (9 loc) · 156 Bytes
 
Apr 18, 2001
Apr 18, 2001
1
2
3
4
5
6
7
8
9
10
11
12
number counter = 0
function main() returns nothing
goForward(100)
turnRight(90)
counter = counter + 1
if (counter < 4)
main()
endif
endfunction