Commit 113cb2a8 by BellCodeEditor

auto save

parent eb2dbbaa
Showing with 18 additions and 0 deletions
import turtle
pen=turtle.Pen()
pen.setheading(90)
def draw(size):
if size>2:
pen.forward(size)
pen.left(45)
draw(size/2)
pen.right(90)
draw(size/2)
pen.left(45)
pen.backward(size)
draw(100)
turtle.done()
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment