2025-06-24 19:58:14 +00:00
|
|
|
fn circle! () -> repeat 20 {
|
|
|
|
fd! (2)
|
|
|
|
rt! (inv (20))
|
|
|
|
}
|
2025-06-24 00:26:26 +00:00
|
|
|
|
2025-06-24 19:58:14 +00:00
|
|
|
fn flower! () -> repeat 10 {
|
|
|
|
circle! ()
|
|
|
|
rt! (inv (10))
|
|
|
|
}
|
2025-06-24 01:22:28 +00:00
|
|
|
|
2025-06-24 19:58:14 +00:00
|
|
|
fn garland! () -> repeat 10 {
|
|
|
|
flower! ()
|
|
|
|
fd! (30)
|
2025-06-24 19:50:02 +00:00
|
|
|
}
|
2025-06-24 01:22:28 +00:00
|
|
|
|
2025-06-24 19:58:14 +00:00
|
|
|
garland! ()
|
2025-06-24 19:50:02 +00:00
|
|
|
|
2025-06-24 19:58:14 +00:00
|
|
|
do turtle_commands > unbox > print!
|
|
|
|
do turtle_state > unbox > print!
|