Created
July 1, 2020 19:34
-
-
Save airtonGit/1d187a2c5156dceaa98f14317d8792a2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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