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 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"); +}