From 343400cdc013d2de7a401073bfd310c317182422 Mon Sep 17 00:00:00 2001 From: sbis04 <43280874+sbis04@users.noreply.github.com> Date: Fri, 26 Oct 2018 15:15:06 +0530 Subject: [PATCH 1/2] hello_new_sbis04 --- CPP/helloworld_new.cpp | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 CPP/helloworld_new.cpp diff --git a/CPP/helloworld_new.cpp b/CPP/helloworld_new.cpp new file mode 100644 index 0000000..da1f22b --- /dev/null +++ b/CPP/helloworld_new.cpp @@ -0,0 +1,7 @@ +#include +using namespace std; +int main() +{ + cout<<"Hello World"; + return 0; +} From 72b6385c873560b960304d76b1b5f29edfd94e9f Mon Sep 17 00:00:00 2001 From: sbis04 <43280874+sbis04@users.noreply.github.com> Date: Fri, 26 Oct 2018 15:22:36 +0530 Subject: [PATCH 2/2] java_comit_2 --- Java/HelloWorld_new.java | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Java/HelloWorld_new.java diff --git a/Java/HelloWorld_new.java b/Java/HelloWorld_new.java new file mode 100644 index 0000000..afa7454 --- /dev/null +++ b/Java/HelloWorld_new.java @@ -0,0 +1,6 @@ +public class HelloWorld { //hello sbis04 + public static void main(String[] args) { + System.out.println("Hello World"); + } +} +