stack overflowで話題になっていたんで、Rubyでも実装してみた。
a = Class.new { define_method(:==) {|_| true } }.new
puts a == 1 && a == 2 && a == 3
#=> true
元ネタ
Go to list of users who liked
More than 5 years have passed since last update.
stack overflowで話題になっていたんで、Rubyでも実装してみた。
a = Class.new { define_method(:==) {|_| true } }.new
puts a == 1 && a == 2 && a == 3
#=> true
元ネタ
Register as a new user and use Qiita more conveniently
Go to list of users who liked