singrdk/base/Windows/Benchmarks/MinApp/HelloCPP.cpp

21 lines
469 B
C++
Raw Permalink Normal View History

2008-11-17 18:29:00 -05:00
// ----------------------------------------------------------------------------
//
// 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;
}