Fork me on GitHub

Xuxiang Mao's Turtle Exercise

by Xuxiang Mao

15 Jan 2014

If I surround something with backticks it is rendered in 'code'

here are my awesome reflections, links, frustrations, and dreams

1
2
3
4
5
6
7
8
9
10
11
12
13
 
import turtle
 
 wn = turtle.Screen() 
wn.bgcolor("lightgreen")
 
tess = turtle.Turtle() 
tess.color("blue")
tess.pensize(3)
tess.forward(50)
tess.left(120)
tess.forward(50)
 
wn.exitonclick()

Turtle image

I am a first year MSIS student Find Xuxiang Mao on Twitter, Github, and on the web.