small meson introduction

This commit is contained in:
2022-01-01 21:37:59 +01:00
parent 8cbf6437f5
commit e289320376
3 changed files with 52 additions and 0 deletions

7
Meson Intro/main.c Normal file
View File

@@ -0,0 +1,7 @@
#include <stdio.h>
int main(int argc, char **argv)
{
printf("Hello there.\n");
return 0;
}