Skip to content

Instantly share code, notes, and snippets.

@ProgDan
Created June 12, 2020 12:02
Show Gist options
  • Select an option

  • Save ProgDan/e3b2f1c95b8c26cd73f180a251a57e93 to your computer and use it in GitHub Desktop.

Select an option

Save ProgDan/e3b2f1c95b8c26cd73f180a251a57e93 to your computer and use it in GitHub Desktop.
def go_up():
if head.direction != "down":
head.direction = "up"
def go_down():
if head.direction != "up":
head.direction = "down"
def go_right():
if head.direction != "left":
head.direction = "right"
def go_left():
if head.direction != "right":
head.direction = "left"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment