First commit

This commit is contained in:
Carlos Sanchez 2024-07-22 19:19:27 -04:00
commit ecab593313
3 changed files with 11 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
texmap

4
build.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/sh
gcc -O3 -Wall main.c -o texmap

6
main.c Normal file
View File

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