diff options
Diffstat (limited to 'Base/home/anon')
-rw-r--r-- | Base/home/anon/Source/little/Makefile | 2 | ||||
-rw-r--r-- | Base/home/anon/Source/little/little.hackstudio | 2 | ||||
-rw-r--r-- | Base/home/anon/Source/little/main.cpp | 2 | ||||
-rw-r--r-- | Base/home/anon/Source/little/other.cpp | 12 | ||||
-rw-r--r-- | Base/home/anon/Source/little/other.h | 1 |
5 files changed, 18 insertions, 1 deletions
diff --git a/Base/home/anon/Source/little/Makefile b/Base/home/anon/Source/little/Makefile index 7c29668846..53de0e50e3 100644 --- a/Base/home/anon/Source/little/Makefile +++ b/Base/home/anon/Source/little/Makefile @@ -1,5 +1,5 @@ PROGRAM = little -OBJS = main.o +OBJS = main.o other.o CXXFLAGS = -g all: $(PROGRAM) diff --git a/Base/home/anon/Source/little/little.hackstudio b/Base/home/anon/Source/little/little.hackstudio index 771584922f..ee2283a2fd 100644 --- a/Base/home/anon/Source/little/little.hackstudio +++ b/Base/home/anon/Source/little/little.hackstudio @@ -2,3 +2,5 @@ main.cpp Makefile little.hackstudio test.frm +other.cpp +other.h diff --git a/Base/home/anon/Source/little/main.cpp b/Base/home/anon/Source/little/main.cpp index 1e8d4a58c0..2fa2d31126 100644 --- a/Base/home/anon/Source/little/main.cpp +++ b/Base/home/anon/Source/little/main.cpp @@ -1,5 +1,6 @@ #include <stdio.h> #include <sys/stat.h> +#include "other.h" enum TestEnum { ValueOne, @@ -19,6 +20,7 @@ int main(int, char**) printf("my_struct.x is %d\n", my_struct.x); for (int i = 0; i < 3; ++i) { // This is a comment :^) + func(); printf("Hello friends!\n"); mkdir("/tmp/xyz", 0755); } diff --git a/Base/home/anon/Source/little/other.cpp b/Base/home/anon/Source/little/other.cpp new file mode 100644 index 0000000000..69d7173c9f --- /dev/null +++ b/Base/home/anon/Source/little/other.cpp @@ -0,0 +1,12 @@ +#include <stdio.h> +#include "other.h" + +int func() +{ + int x = 1; + int y = 2; + printf("x: %d\n", x); + printf("y: %d\n", y); + printf("x+y: %d\n", x+y); + return x + y; +} diff --git a/Base/home/anon/Source/little/other.h b/Base/home/anon/Source/little/other.h new file mode 100644 index 0000000000..45588fbf88 --- /dev/null +++ b/Base/home/anon/Source/little/other.h @@ -0,0 +1 @@ +int func(); |