cpp_playground/Meson Intro/main.c

8 lines
100 B
C
Raw Normal View History

2022-01-01 20:37:59 +00:00
#include <stdio.h>
int main(int argc, char **argv)
{
printf("Hello there.\n");
return 0;
}