Skip to content
Snippets Groups Projects
Commit 2bb71755 authored by Drew Blessing's avatar Drew Blessing
Browse files

Add cherry pick example file

parent ab0aa1ac
No related branches found
No related tags found
No related merge requests found
class Person
attr_reader :name, :email
def initialize(name, email)
@name = name
@email = email
end
# Duplicate attr_readers.
# TODO: Remove these comments and the 2 methods below.
def name
@name
end
def email
@email
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment