From 35fcca06543d3c8e608f925e1ca376d9c7ad8048 Mon Sep 17 00:00:00 2001 From: Naveen Vamshi Date: Sat, 13 Oct 2018 20:25:57 +0530 Subject: [PATCH 1/2] Add hello --- hello.txt | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 hello.txt diff --git a/hello.txt b/hello.txt new file mode 100644 index 0000000..54023e0 --- /dev/null +++ b/hello.txt @@ -0,0 +1,6 @@ +#included + +void main{ + +printf("Hello World"); +} From 6c4d41c37cecfbb7f9c12c561d5668e3ea4e7d15 Mon Sep 17 00:00:00 2001 From: Naveen Vamshi Date: Sat, 13 Oct 2018 20:51:22 +0530 Subject: [PATCH 2/2] Add age java file --- age.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 age.java diff --git a/age.java b/age.java new file mode 100644 index 0000000..811cafc --- /dev/null +++ b/age.java @@ -0,0 +1,12 @@ +public class Test { + public void pupAge() { + int age = 0; + age = age + 7; + System.out.println("Puppy age is : " + age); + } + + public static void main(String args[]) { + Test test = new Test(); + test.pupAge(); + } +} \ No newline at end of file