// 7_7-6.cpp : コンソール アプリケーションのエントリ ポイントを定義します。
//

#include "stdafx.h"
#include <iostream>
#include <windows.h>

using namespace std;

namespace spc1 {
	void disp();
}

void spc1::disp() {
	cout << "spc1のdisp()関数です。\n";
}

using namespace spc1;

int _tmain(int argc, _TCHAR* argv[])
{
	disp();

	MessageBox(NULL, _T("Check Console Window"), L"MessageBox", MB_OK);

	return 0;
}

