# Primitive types. # Boolean. ```rust let foo: bool = true; ``` # Char. Char is identified by using single quotes `'c'`. ```rust let foo: char = 'c'; ```