First commit

This commit is contained in:
Pablo Rodriguez
2025-07-27 11:36:32 -04:00
commit e8e91e86c7
7 changed files with 47 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
project(UglyMain)
add_executable(${PROJECT_NAME} main.c)

5
source/app/main.c Normal file
View File

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