21 lines
469 B
C++
21 lines
469 B
C++
|
// ----------------------------------------------------------------------------
|
||
|
//
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
//
|
||
|
// ----------------------------------------------------------------------------
|
||
|
|
||
|
// HelloCPP.cpp : Defines the entry point for the console application.
|
||
|
//
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <winlean.h>
|
||
|
|
||
|
int main(int argc, char* argv[])
|
||
|
{
|
||
|
printf("Hello world\n");
|
||
|
|
||
|
Sleep(INFINITE);
|
||
|
return 0;
|
||
|
}
|
||
|
|