Skip to content

Instantly share code, notes, and snippets.

@higaki
Last active November 20, 2019 03:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save higaki/cd3cacba308944014dd5d212746a1ba6 to your computer and use it in GitHub Desktop.
Save higaki/cd3cacba308944014dd5d212746a1ba6 to your computer and use it in GitHub Desktop.
# frozen_string_literal: true
RUBY_VERSION # => "2.7.0"
s = "Ruby"
t = "Ruby"
s == t # => true
s.equal? t # => true
s.object_id # => 12886797280
t.object_id # => 12886797280
s.upcase! rescue $! # => #<FrozenError: can't modify frozen String: "Ruby">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment