summaryrefslogtreecommitdiff
path: root/.github/actions/msvc-dev-cmd/hello.c
blob: 5ba7644523ac7dcb11d7e9fbe7f12b713ddaf941 (plain)
1
2
3
4
5
6
7
#include <stdio.h>

int main(int argc, char **argv)
{
	printf("Hello, world!\n");
	return 0;
}