Skip to content

Instantly share code, notes, and snippets.

@anthonygharvey
Last active March 6, 2019 01:18
Show Gist options
  • Save anthonygharvey/16372f4dac39b81ea1e20b15688f16c2 to your computer and use it in GitHub Desktop.
Save anthonygharvey/16372f4dac39b81ea1e20b15688f16c2 to your computer and use it in GitHub Desktop.
class Movie
attr_accessor :finalized
attr_reader :title, :length, :budget
def title=(new_title)
unless @finalized
@title = new_title
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment