summaryrefslogtreecommitdiff
path: root/2p12.cpp
blob: 73eef5cb2732f8c377d550f19d8faec10a56480e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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;
}