17 lines
227 B
C++
17 lines
227 B
C++
// testVC_ENV_CL.cpp : Defines the entry point for the console application.
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
|
|
|
|
int _tmain(int argc, _TCHAR* argv[])
|
|
{
|
|
#ifdef VAHAGN
|
|
puts("VAHAGN_EXPERIMENT");
|
|
#else
|
|
puts("kkkkkk");
|
|
#endif
|
|
return 0;
|
|
}
|
|
|