diff options
Diffstat (limited to '2p12.cpp')
-rw-r--r-- | 2p12.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/2p12.cpp b/2p12.cpp new file mode 100644 index 0000000..73eef5c --- /dev/null +++ b/2p12.cpp @@ -0,0 +1,20 @@ +#include <iostream> +#include "sales_item.hpp" + +/* + * + * 2.12 + * + * + */ + +int main () { + + //int double = 3.14; // Invalid + //int catch-22 = 1; // Invalid + double Double = 3.14; + int __ = 99; // HOW IS THIS VALID + //int 1_or_2 = 2; // Invalid + std::cout << Double << "\n" << __ << std::endl; + return 0; +} |