
Untitled
By: a guest on
May 2nd, 2012 | syntax:
None | size: 0.47 KB | hits: 16 | expires: Never
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.
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! :)
ready? && set? && fight!
if ( ready? && set? ) then fight! end
( ready? && set? ) ? fight! : nil
fight! if ready? && set?