Recent Releases
(as of November 17th, 2008)

And many other platforms, as well!

Ready to See Some Code?

Alright, here is a simple Shoes program:

Shoes.app { button "PUSH!" }

The braces { and } are a kind of container. The button is "in" the app. You see?

Like we can place a few buttons in a stack:

Shoes.app {
  stack {
    button "Mice"
    button "Eagles"
    button "Quail"
  }
}

And to give the stack a margin:

Shoes.app {
  stack(:margin => 4) {
    button "Mice"
    button "Eagles"
    button "Quail"
  }
}

This is kind of a narrow alley. Let's move on to a new page, what say you?