Literal expressions
A literal expression consists of one of the literal forms described earlier. It directly describes a number, character, string, or boolean value.
# #![allow(unused_variables)] #fn main() { "hello"; // string type '5'; // character type 5; // integer type #}