Skip to content

Instantly share code, notes, and snippets.

@roneygomes
Last active November 27, 2021 02:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save roneygomes/81e915644c6cb91b66d90a25a3bada60 to your computer and use it in GitHub Desktop.
Save roneygomes/81e915644c6cb91b66d90a25a3bada60 to your computer and use it in GitHub Desktop.
a escrita como operação polimórfica
// 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