mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-04-06 11:48:03 +08:00
6 lines
122 B
Rust
6 lines
122 B
Rust
fn main() {
|
||
let c = 'z';
|
||
let z: char = 'ℤ'; // with explicit type annotation
|
||
let heart_eyed_cat = '😻';
|
||
}
|