Created
April 4, 2015 22:20
-
-
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
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
fn main () | |
{ | |
let martini_emoji = '\u{1F378}'; | |
println!("{}", martini_emoji); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
works with rustc 1.0.0-beta (9854143cb 2015-04-02) (built 2015-04-02)