Skip to content

Instantly share code, notes, and snippets.

@airtonGit
Last active July 2, 2020 01:09
Show Gist options
  • Save airtonGit/0851acd53c75b134ef2b430f1bed5420 to your computer and use it in GitHub Desktop.
Save airtonGit/0851acd53c75b134ef2b430f1bed5420 to your computer and use it in GitHub Desktop.
// Exemplo em GO
type IMsgBasica interface{
SetTexto(valor string)
}
// Exemplo de objeto
type MsgOla struct{
(…)
}
// Ao definir este método MsgOla "se parece" com IMsgBasica
// logo implementa a interface e poderá ser utilizada
func (t *MsgOla) SetTexto(valor string){
(…)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment