Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 2nd, 2012  |  syntax: None  |  size: 0.47 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Right now, the tagline-code-snippet thing on [Codebrawl](http://codebrawl.com) is `if ( ready? && set? ) { fight! };`. While this looks nice, this is not valid Ruby code.
  2.  
  3. So, I'm looking for something better. It should be Ruby, and it should look cool. If you have an idea, please fork the Gist and add it to the list below. Thanks! :)
  4.  
  5.     ready? && set? && fight!
  6.     if ( ready? && set? ) then fight! end
  7.     ( ready? && set? ) ? fight! : nil
  8.     fight! if ready? && set?