20 lines
254 B
Plaintext
20 lines
254 B
Plaintext
fn circle! () -> repeat 20 {
|
|
fd! (2)
|
|
rt! (inv (20))
|
|
}
|
|
|
|
fn flower! () -> repeat 10 {
|
|
circle! ()
|
|
rt! (inv (10))
|
|
}
|
|
|
|
fn garland! () -> repeat 10 {
|
|
flower! ()
|
|
fd! (30)
|
|
}
|
|
|
|
garland! ()
|
|
|
|
do turtle_commands > unbox > print!
|
|
do turtle_state > unbox > print!
|