I REMEMBER

main
bel 2023-11-17 19:36:10 -07:00
parent 0ca77a8712
commit dc041e41fd
4 changed files with 16 additions and 0 deletions

2
.gitignore vendored
View File

@ -1 +1,3 @@
**/*.sw*
**/*.gch
**/a.out

5
c.d/helloworld.c Normal file
View File

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

1
c.d/helloworld.h Normal file
View File

@ -0,0 +1 @@
#include <stdio.h>

8
c.d/run.sh Normal file
View File

@ -0,0 +1,8 @@
#! /bin/bash
set -e
set -o pipefail
set -u
gcc ./*.{h,c}
./a.out