A Logo spiral

Nikolaus Gradwohl2010-06-15T19:58:00+00:00

For todays 30daysOfCreativity-Project I wanted to use a tool, that I haven't used so far. So I went back to the first programming language I have learned 20 years ago - Logo.

I used the kde KTurtle programm to write some logo code, which looks more like a modern IDE that the logo interpreter I remember :-)

reset
clear
$l = 1
repeat 64 {
  pu
  fw $l*2
    pd
  repeat 4 {
        fw $l
        tr 90
    }
  pu
  bw $l*2
    $l = $l + 1
    tr 360/32
}

logo spiral

read more ...