Created
December 2, 2008 13:16
-
-
Save vikhyat/31110 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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