feat(c): init c template

This commit is contained in:
Artur Manuel 2025-02-06 23:35:40 +00:00
commit 01bc222af3
7 changed files with 108 additions and 0 deletions

3
templates/c/main.c Normal file
View file

@ -0,0 +1,3 @@
#include <stdio.h>
int main(void) { printf("Hello, world!\n"); }