diff --git a/examples/.gitignore b/examples/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/examples/math/.build/manifest.json b/examples/math/.build/manifest.json deleted file mode 100644 index 19a7145..0000000 --- a/examples/math/.build/manifest.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": 1, - "modules": [ - { - "name": "math", - "customTypes": {}, - "identifiers": { - "add": { - "encodedType": "F(I(32),I(32),I(32))", - "exported": true - } - } - } - ] -} \ No newline at end of file diff --git a/examples/math/.build/out.a b/examples/math/.build/out.a deleted file mode 100644 index 967be10..0000000 Binary files a/examples/math/.build/out.a and /dev/null differ diff --git a/examples/math/.build/out.c b/examples/math/.build/out.c deleted file mode 100644 index ca42bc4..0000000 --- a/examples/math/.build/out.c +++ /dev/null @@ -1,24 +0,0 @@ -#include -#include -#include -#include -#include - -struct nub_core_string -{ - const char *data; - int length; -}; - - - -int32_t nub_math_add_500748c2c6d70959(int32_t, int32_t); - - -int32_t nub_math_add_500748c2c6d70959(int32_t a, int32_t b) -{ - { - return (a + b); - } -} - diff --git a/examples/math/.build/out.nublib b/examples/math/.build/out.nublib deleted file mode 100644 index 341b865..0000000 Binary files a/examples/math/.build/out.nublib and /dev/null differ diff --git a/examples/math/.build/out.o b/examples/math/.build/out.o deleted file mode 100644 index 20786e3..0000000 Binary files a/examples/math/.build/out.o and /dev/null differ diff --git a/examples/program/.build/out b/examples/program/.build/out deleted file mode 100755 index 4eace4f..0000000 Binary files a/examples/program/.build/out and /dev/null differ diff --git a/examples/program/.build/out.c b/examples/program/.build/out.c deleted file mode 100644 index f5e8710..0000000 --- a/examples/program/.build/out.c +++ /dev/null @@ -1,29 +0,0 @@ -#include -#include -#include -#include -#include - -struct nub_core_string -{ - const char *data; - int length; -}; - - - -extern int32_t nub_math_add_500748c2c6d70959(int32_t, int32_t); -int32_t nub_main_main_55882df37f903935(); - -int main(int argc, char *argv[]) -{ - return nub_main_main_55882df37f903935(); -} - -int32_t nub_main_main_55882df37f903935() -{ - { - return nub_math_add_500748c2c6d70959(1, 2); - } -} -