rudus/sandbox.ld

20 lines
254 B
Plaintext
Raw Permalink Normal View History

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