diff options
Diffstat (limited to '2p13.cpp')
-rw-r--r-- | 2p13.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/2p13.cpp b/2p13.cpp new file mode 100644 index 0000000..2fdb562 --- /dev/null +++ b/2p13.cpp @@ -0,0 +1,18 @@ +#include <iostream> +#include "sales_item.hpp" + +/* + * 2.13 + * Program does not compile using as many flags as i do. Which is probably a really good idea though. + * + * + */ + +int gi = 42; +int main () { + + int i = 100; + int j = i; + std::cout << gi << " " << i << " " << j << std::endl; + return 0; +} |