Skip to content

Instantly share code, notes, and snippets.

@airtonGit
Created July 1, 2020 19:34
Show Gist options
  • Save airtonGit/1d187a2c5156dceaa98f14317d8792a2 to your computer and use it in GitHub Desktop.
Save airtonGit/1d187a2c5156dceaa98f14317d8792a2 to your computer and use it in GitHub Desktop.
// continuação, exemplo de uso de MsgOla
func enviaMsg(msg IMsgBasica){
(…)
}
//criando objeto MsgOla
msg := &MsgOla{}
msg.SetTexto("Olá duck typing!")
// msg é aceito pela interface IMsgBasica por duck typing
enviaMsg(msg)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment