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()