13 lines
203 B
C++
13 lines
203 B
C++
// TestMain.cpp : main project file.
|
|
|
|
#include "stdafx.h"
|
|
|
|
using namespace System;
|
|
|
|
int main(array<System::String ^> ^args)
|
|
{
|
|
Console::WriteLine("Hello World");
|
|
Console::ReadLine();
|
|
return 0;
|
|
}
|