trpl-zh-cn/listings/ch03-common-programming-concepts/no-listing-09-char/src/main.rs

6 lines
83 B
Rust
Raw Normal View History

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