Skip to content

Latest commit

 

History

History
63 lines (38 loc) · 648 Bytes

april_modified.toby

File metadata and controls

63 lines (38 loc) · 648 Bytes
 
Apr 18, 2001
Apr 18, 2001
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
function main() returns nothing
// april kicks ass
flower()
endfunction
function flower() returns nothing
number i
number bob
number direction
direction = 1
bob = 0
for i = 10 to 100 step 5
bob = bob + direction
if (bob >= 12)
bob = 11
direction = -1
endif
if (bob <= 0)
bob = 0
direction = 1
endif
setPenColor(bob)
webbox(i)
endfor
endfunction
function webbox(number m) returns nothing
number i
for i = 1 to 360 / 10
box(m)
turnRight(10)
endfor
endfunction
function box(number size) returns nothing
number i
for i = 1 to 4
goForward(size)
turnRight(90)
endfor
endfunction