Skip to content

Instantly share code, notes, and snippets.

@fela
Created July 26, 2010 17:57
Show Gist options
  • Save fela/490925 to your computer and use it in GitHub Desktop.
Save fela/490925 to your computer and use it in GitHub Desktop.
require 'thread'
Shoes.app do
@s = stack do
para "this is a para in the stack.."
end
Thread.new do
sleep 0.1
@s.remove
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment