ruby fun

ok, let’s get straight into irb because REPL speaks a thousand words…

irb> %w_a b c_
=> ['a', 'b', 'c']

That was cryptic…try this

irb> %i_a b c_
=> [:a, :b, :c]

That save a whole bunch of keystrokes…how about this

irb> %r_a/b/c_
=> /a\/b\/c/

That makes regular expression with forward slash more readable…in fact there’s a whole slew of them %: %q, %x, %

ok, that’s enough fun for now.

 
0
Kudos
 
0
Kudos

Now read this

IRC#ruby-lang

Ah good old Internet Relay Chat, haven’t used that in like ever. But found out that it’s the best source of help one could get on ruby. Setup I got a Mac, so I roll with Colloquy. Then connect to irc.freenode.net server and join... Continue →