//
// Hello.c - Hello World
// Copyright Microsoft Corporation.
// All rights reserved.
#include <stdio.h>
#include <winlean.h>
int __cdecl
main(int argc, char *argv[])
{
printf("Hello World!\n");
Sleep(INFINITE);
return 0;
}