原生类型

    • 有符号整型(signed integers):, i16i32i64isize(指针 size)
    • 浮点类型(floating point): , f64
    • char(字符):单独的 Unicode 字符,如 'a''α''∞'(大小都是4个字节)
    • 单元类型(unit type,空元组): 只有 这个唯一值
    • 数组:如 [1, 2, 3]