initial commit

Signed-off-by: ale <ale@manalejandro.com>
Este commit está contenido en:
ale
2025-08-21 16:49:30 +02:00
commit 771f2d64ae
Se han modificado 21 ficheros con 3892 adiciones y 0 borrados

9
examples/hello.c Archivo normal
Ver fichero

@@ -0,0 +1,9 @@
// Example C programs for testing
// examples/hello.c
int printf(const char* format, ...);
int main() {
printf("Hello, World!\n");
return 0;
}