#Elm Turtle Graphics
Tell the turtle where to go using the basic Turtle module. For example,
import Turtle exposing (..)
steps = [forward 20, left 90, forward 10]
main = animate steps
Those already comfortable with Elm should look at the Advanced module.
Please submit bugs, issues, and the like through GitHub.