require 'test/unit'
include Test::Unit::Assertions
a, b = "foo", nil
a = b ||= a
assert_equal a, ?
Can you answer without #irb? :)
#ruby #quiz
Not everyone knows that _ is.
#ruby #irb:
User.first
# => <User id:1 ...>
# Oups! I forgot store this var :(
_
# => <User id:1 ...>
user = _
# ...
_ variable stores last return data. Helpful!