Commit ad1e4d76 by BellCodeEditor

save project

parent a89a7484
Showing with 4 additions and 1 deletions
......@@ -3,7 +3,10 @@ def tree(n):
if n>=50:
pen.forward(n)
pen.right(30)
tree(50)
tree(n-50)
pen.left(30)
pen.left(30)
tree(n-50)
pen.up()
pen.backward(n)
pen.down()
......
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