rudus/sandbox.ld
2025-06-24 15:58:14 -04:00

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!