commit d75ab807ceda3cb3e97b88e1cd51eea7192da120 Author: Allen Webster Date: Thu Apr 17 12:56:46 2025 -0700 initialize diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..07ed706 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +build/* \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..8b864bb --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +### C Scripting + +TODO(allen): diff --git a/src/example1.c b/src/example1.c new file mode 100644 index 0000000..ea8fe6c --- /dev/null +++ b/src/example1.c @@ -0,0 +1,10 @@ +/* +** C Scripting Example #1 +*/ + +#include "example1.h" + + +int main(void){ + return(0); +} \ No newline at end of file diff --git a/src/example1.h b/src/example1.h new file mode 100644 index 0000000..7c3412f --- /dev/null +++ b/src/example1.h @@ -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 +