Skip to content

Instantly share code, notes, and snippets.

@melito
Created September 1, 2009 19:47
Show Gist options
  • Select an option

  • Save melito/179328 to your computer and use it in GitHub Desktop.

Select an option

Save melito/179328 to your computer and use it in GitHub Desktop.
require "rubygems"
require "eventmachine"
@lol = lambda { EM.run { EM.next_tick { p :lol }} }
EM.run {
EM.add_periodic_timer(1) { @lol.call }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment