5.2 — Literals
are values that are inserted directly into the code. For example: return 5; // 5 is an integer literal bool myNameIsAlex { true }; // true is a boolean literal double d { 3.4 }; // 3.4 is a double literal std::cout << “Hello, world!”; // “Hello, world!” is a …