Skip to content

Instantly share code, notes, and snippets.

@ttreitlinger
Created April 22, 2011 14:04
Show Gist options
  • Save ttreitlinger/936707 to your computer and use it in GitHub Desktop.
Save ttreitlinger/936707 to your computer and use it in GitHub Desktop.
class Message
attr_accessor :from, :to, :body
def initialize(from, to, body)
@from = from
@to = to
@body = body
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment