Skip to content

Instantly share code, notes, and snippets.

@baroquebobcat
Created March 20, 2012 16:39
Show Gist options
  • Select an option

  • Save baroquebobcat/2138026 to your computer and use it in GitHub Desktop.

Select an option

Save baroquebobcat/2138026 to your computer and use it in GitHub Desktop.
#imports go here
class TimerContainer
def initialize
@list = ArrayList.new
end
def add_task timer:TimerTask
@list.add timer
end
end
TimerContainer.new.add_task do
puts "hello, I'm in a task"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment