Created
November 23, 2014 15:47
-
-
Save JacobNinja/f5fda976f38d23477547 to your computer and use it in GitHub Desktop.
Revisions
-
JacobNinja created this gist
Nov 23, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ class NilClass def to_a p 'calling to_a within NilClass' [] end end # irb(main):017:0> [*nil] # "calling to_a within NilClass" # => []