Types - Easy Rust

PHOTO EMBED

Wed Jan 31 2024 11:16:22 GMT+0000 (Coordinated Universal Time)

Saved by @CrazDragon

fn main() {
    let first_letter = 'A';
    let space = ' '; // A space inside ' ' is also a char
    let other_language_char = 'Ꮔ'; // Thanks to Unicode, other languages like Cherokee display just fine too
    let cat_face = '😺'; // Emojis are chars too
}
content_copyCOPY

https://dhghomon.github.io/easy_rust/Chapter_7.html