Files
msvc-dev-cmd/hello.c
ilammy d33b04e19c Verify configured environment
Try compiling some C code, If it works then we're probably fine.
I don't even try to verify cross-compilation because I don't need it.
It should work, but that's not my problem right now.
2019-10-02 00:53:54 +03:00

8 lines
95 B
C

#include <stdio.h>
int main(int argc, char **argv)
{
printf("Hello, world!\n");
return 0;
}