// Simple example of inplanting your own namespaces
// Date 12:40 31/10/2016
// By Ben a.k.a DreamVB

#include <iostream>
#include <Windows.h>

//Out custom namespave
namespace data{
	double pi = 3.14159265;
	int Year = 2016;
	char *Day[] = { "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun" };
}

using namespace std;
using std::cout;
using std::endl;

int main(int argc, char *argv[]){
	//Testing our name space

	cout << "pi   =  " << data::pi << endl;
	cout << "Day  =  " << data::Day[2] << endl;
	cout << "Year =  " << data::Year << endl;

	system("pause");
	return 0;
}
