Created
March 20, 2012 16:39
-
-
Save baroquebobcat/2138026 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
| #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