Skip to content

Instantly share code, notes, and snippets.

@mcgirr
Created April 4, 2015 22:20
Show Gist options
  • Save mcgirr/3ea646f4f2f68460ff0e to your computer and use it in GitHub Desktop.
Save mcgirr/3ea646f4f2f68460ff0e to your computer and use it in GitHub Desktop.
Print the martini Emoji 🍸 in the Rust programming language from a Unicode character code
fn main ()
{
let martini_emoji = '\u{1F378}';
println!("{}", martini_emoji);
}
@sami2020pro
Copy link

OK

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment