diff --git a/test-sample.java b/test-sample.java new file mode 100644 index 0000000..4ccad12 --- /dev/null +++ b/test-sample.java @@ -0,0 +1,11 @@ +public class TestSample { + public static void main(String[] args) { + System.out.println("Hello, World!"); + } + + public void testMethod() { + int x=1; + int y = 2; + System.out.println(x+y); + } +}