Skip to content

Instantly share code, notes, and snippets.

@raghubetina
Created January 16, 2013 16:40
Show Gist options
  • Save raghubetina/4548675 to your computer and use it in GitHub Desktop.
Save raghubetina/4548675 to your computer and use it in GitHub Desktop.
class Student
attr_accessor "name"
attr_accessor "photo_url"
attr_accessor "section"
attr_accessor "twitter"
def introduce
return "#{@name} (@#{@twitter}) is in the Web Dev #{@section.upcase} class."
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment