Last active
November 27, 2021 02:34
-
-
Save roneygomes/81e915644c6cb91b66d90a25a3bada60 to your computer and use it in GitHub Desktop.
a escrita como operação polimórfica
This file contains 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
// escrevendo em papel | |
fn write_on_paper(media: &mut Paper, text: &str); | |
// escrevendo num computador | |
fn write_on_computer(media: &mut Computer, text: &str); | |
// escrevendo na areia | |
fn write_on_sand(media: &mut Sand, text: &str); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment