Hello world initilized

This commit is contained in:
2024-08-18 23:13:18 +02:00
parent 4e8d0b6f8c
commit dbda7e15b0
3 changed files with 41 additions and 0 deletions

8
src/main.c Normal file
View File

@@ -0,0 +1,8 @@
#include "version.h"
#include <stdio.h>
int main(){
printf("Hello, world. \n");
printf("version: %s. \n", _VERSION);
return 0;
}