Report abuse

# The black rect should fill half the app's window.  The red circle should
# fill the entire rect.

Shoes.app :width => 100, :height => 100 do
  background white

  fill black
  rect 0, 0, 50, 50

  fill red
  oval 0, 0, 25

end