initialize

main
Allen Webster 2025-04-17 12:56:46 -07:00
commit d75ab807ce
4 changed files with 25 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
build/*

3
README.md Normal file
View File

@ -0,0 +1,3 @@
### C Scripting
TODO(allen):

10
src/example1.c Normal file
View File

@ -0,0 +1,10 @@
/*
** C Scripting Example #1
*/
#include "example1.h"
int main(void){
return(0);
}

11
src/example1.h Normal file
View File

@ -0,0 +1,11 @@
/*
** C Scripting Example #1
*/
#ifndef C_SCRIPTING_EXAMPLE1_H
#define C_SCRIPTING_EXAMPLE1_H
// TODO(allen):
#endif //C_SCRIPTING_EXAMPLE1_H