1
0
mirror of https://github.com/KaiserY/trpl-zh-cn synced 2025-04-14 15:38:48 +08:00
trpl-zh-cn/listings/ch03-common-programming-concepts/no-listing-09-char/src/main.rs

6 lines
122 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
fn main() {
let c = 'z';
let z: char = ''; // with explicit type annotation
2022-02-06 16:43:51 +08:00
let heart_eyed_cat = '😻';
}