Skip to content

Instantly share code, notes, and snippets.

@havenwood
Created March 13, 2020 18:38
Show Gist options
  • Save havenwood/f17656c2b70b3cdec1c11d248223bf82 to your computer and use it in GitHub Desktop.
Save havenwood/f17656c2b70b3cdec1c11d248223bf82 to your computer and use it in GitHub Desktop.
def foo
[]
end
def bar
[].freeze
end
EXAMPLE = [].freeze
def baz
EXAMPLE
end
foo.equal?(foo)
#=> false
bar.equal?(bar)
#=> false
baz.equal?(baz)
#=> true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment