Python
import turtle as t t.fillcolor("yellow") t.begin_fill() t.goto(0,150) t.goto(-150,0) t.goto(0,-150) t.goto(0,0) t.goto(100,100) t.goto(100,-100) t.goto(0,0) t.end_fill() t.penup() t.goto(-120,0) t.pendown() t.circle(8)