diff --git a/sources/main.cpp b/sources/main.cpp new file mode 100644 index 0000000..b3123a3 --- /dev/null +++ b/sources/main.cpp @@ -0,0 +1,9 @@ +#include "headers/hana.h" +#include "sources/hana.cpp" + +int main() +{ + +hana(); + +} diff --git a/sources/makefile b/sources/makefile new file mode 100644 index 0000000..7dcc5cc --- /dev/null +++ b/sources/makefile @@ -0,0 +1,2 @@ +main.exe:sources/hana.cpp headers/hana.h + g++ $< -I. -o $@