From e5ef21b1a78b4a2c6c6e9d191597564c175707bc Mon Sep 17 00:00:00 2001 From: Yarocvet Date: Fri, 9 Jun 2023 21:11:48 +0300 Subject: [PATCH] code: start --- lab3.cbp | 40 ++++++++++++++++++++++++++++++++++++++++ main.cpp | 9 +++++++++ 2 files changed, 49 insertions(+) create mode 100644 lab3.cbp create mode 100644 main.cpp diff --git a/lab3.cbp b/lab3.cbp new file mode 100644 index 0000000..f103d77 --- /dev/null +++ b/lab3.cbp @@ -0,0 +1,40 @@ + + + + + + diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..b4392ec --- /dev/null +++ b/main.cpp @@ -0,0 +1,9 @@ +#include + +using namespace std; + +int main() +{ + cout << "Hello world!" << endl; + return 0; +}