Skip to content

Instantly share code, notes, and snippets.

@tenntenn
Last active December 10, 2015 02:39
Show Gist options
  • Save tenntenn/4369409 to your computer and use it in GitHub Desktop.
Save tenntenn/4369409 to your computer and use it in GitHub Desktop.
メッセージを表す構造体です。
// メッセージ
type Message struct {
// 著者(送り主)
Author string `json:"author"`
// メッセージ本文
Body string `json:"body"`
}
func (self *Message) String() string {
return self.Author + " says " + self.Body
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment