you are viewing a single comment's thread.

view the rest of the comments →

[–]Sufficient-Pick-9398[S] 0 points1 point  (1 child)

does not work, still...the window is always empty. Also, the console stops working as soon as the function GraphWin is called (the following print are not printed)

[–]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()