# Arup Guha
# 1/15/2020
# Example Program to fill a circle

# Turtle documentation here:
# https://docs.python.org/3.3/library/turtle.html?highlight=turtle

import turtle

# The class really liked this.
turtle.shape("turtle")

# This was to test how the current angle affects where the circle
# is drawn.
turtle.left(45)
turtle.circle(100)

# This helps us see where the circle was drawn.
turtle.forward(200)
