From b41a747ac1e0efdd3a040dc2dc4c28ecb09f0d11 Mon Sep 17 00:00:00 2001 From: "aurelien.lohmann" Date: Wed, 30 Mar 2022 08:55:53 +0200 Subject: [PATCH] added main.cpp --- main.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 main.cpp diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..af6710b --- /dev/null +++ b/main.cpp @@ -0,0 +1,8 @@ +#include +#include "arithmetic.h" +int main() +{ +std::cout << "Hello world!" << std::endl; +std::cout << "c= " << add(1,2) << std::endl; +return 0; +}