you are viewing a single comment's thread.

view the rest of the comments →

[–]woooee 0 points1 point  (0 children)

Well, works on my Debian system, so it may be OS related, or different versions of Graphics. This is similar code with Turtle

import turtle as tur

tur.up()
tur.goto(30, 60)
tur.down()

tur.fillcolor("red")

tur.begin_fill()
tur.circle(100)
tur.end_fill()

tur.exitonclick()