From a34ed2316e5e43fd583e321b139191d876305be2 Mon Sep 17 00:00:00 2001 From: avinal <185067@nith.ac.in> Date: Thu, 18 Feb 2021 22:09:51 +0530 Subject: [PATCH] main file added --- src/Main.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/Main.cpp diff --git a/src/Main.cpp b/src/Main.cpp new file mode 100644 index 0000000..53d463c --- /dev/null +++ b/src/Main.cpp @@ -0,0 +1,15 @@ +/** + * /mnt/z/my_git/RCRS-CSD-327/src/Main.cpp + * @file Main.cpp + * @author Avinal Kumar + * @since February 18, 2021 + * + * The driver code + */ + +#include +#include +int main(int argc, char const *argv[]) { + std::cout << "Hello Encryption"; + return 0; +}