Skip to content

Instantly share code, notes, and snippets.

@pmarreck
Created February 3, 2013 21:18
Show Gist options
  • Save pmarreck/4703697 to your computer and use it in GitHub Desktop.
Save pmarreck/4703697 to your computer and use it in GitHub Desktop.
ruby, wtf
>> a=lambda{:this};b=lambda{:this};a==b
=> true
>> a=lambda{:this}
=> #<Proc:0x007f9d5a8c4430@(irb):24 (lambda)>
>> b=lambda{:this}
=> #<Proc:0x007f9d5a8bade0@(irb):25 (lambda)>
>> a==b
=> false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment