From 45220502374d80cd2b0a0f6a4ba3d4a54d7180f0 Mon Sep 17 00:00:00 2001 From: Julian Date: Wed, 30 Mar 2022 10:38:38 +0200 Subject: [PATCH] Test aritmetic function --- arithmetic.cpp | 2 +- main.cpp | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 main.cpp diff --git a/arithmetic.cpp b/arithmetic.cpp index 0fcfec5..8baf64c 100644 --- a/arithmetic.cpp +++ b/arithmetic.cpp @@ -1,4 +1,4 @@ -#include arithmetic.h +#include "arithmetic.h" int add(int a, int b) { diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..c291313 --- /dev/null +++ b/main.cpp @@ -0,0 +1,10 @@ +#include +#include "arithmetic.h" +int main() +{ + + std::cout<<"Hello world!"<