From 2e774c4720f26a87591c05a1e1bf7c27f5335224 Mon Sep 17 00:00:00 2001 From: omar-sheta Date: Thu, 30 Apr 2020 14:05:47 +0200 Subject: [PATCH] message --- sources/main.cpp | 9 +++++++++ sources/makefile | 2 ++ 2 files changed, 11 insertions(+) create mode 100644 sources/main.cpp create mode 100644 sources/makefile 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 $@