Skip to content

Instantly share code, notes, and snippets.

@ejmurray
Created September 20, 2015 16:14
Show Gist options
  • Save ejmurray/95ce72d8188f9fb905cd to your computer and use it in GitHub Desktop.
Save ejmurray/95ce72d8188f9fb905cd to your computer and use it in GitHub Desktop.
#!/usr/bin/python
# encoding: utf-8
"""
Created: 12/09/15, 15:50
Description:
"""
from swampy.TurtleWorld import *
world = TurtleWorld()
bob = Turtle()
def square(t):
for i in range(4):
fd(t, 100)
lt(t, 90)
square(bob)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment