diff --git a/src/main/java/com/example/javamavenjunithelloworld/Pallav.java b/src/main/java/com/example/javamavenjunithelloworld/Pallav.java new file mode 100644 index 0000000..3bbb3cf --- /dev/null +++ b/src/main/java/com/example/javamavenjunithelloworld/Pallav.java @@ -0,0 +1,7 @@ +package com.example.javamavenjunithelloworld; + +public class Pallav { + public static void main(String[] args) { + System.out.println("Hello World"); + } +} \ No newline at end of file diff --git a/src/main/java/com/example/javamavenjunithelloworld/Utility.java b/src/main/java/com/example/javamavenjunithelloworld/Utility.java new file mode 100644 index 0000000..3243923 --- /dev/null +++ b/src/main/java/com/example/javamavenjunithelloworld/Utility.java @@ -0,0 +1,11 @@ +package com.example.javamavenjunithelloworld; + +public class Utility { + public static void main(String[] args) { + + } + + static boolean isEven(int n) { + return n%2==0; + } +}