Commit 2e7af6a3 by BellCodeEditor

auto save

parent 2dee1571
Showing with 2 additions and 2 deletions
......@@ -3,8 +3,8 @@ import random
def tree(n):
if n>=0:
pen.forward(n)
pen.right(30)
pen.forward(n/10)
pen.right(0,30)
tree(n-10)
pen.left(60)
tree(n-10)
......
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