Skip to content

Instantly share code, notes, and snippets.

@vikhyat
Created December 2, 2008 13:16
Show Gist options
  • Save vikhyat/31110 to your computer and use it in GitHub Desktop.
Save vikhyat/31110 to your computer and use it in GitHub Desktop.
# tiny shoes app that tells the length of some text
Shoes.app :title => 'strlen', :width => 300, :height => 125 do
background "#CFC".."AFA"
stack :margin => 10 do
para "Enter some text here"
@text = edit_line
every 0.1 do
@len.replace "The length of the text entered is " + @text.text.length.to_s + "."
end
@len = para ""
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment