From c321a290a9776b1fb712674123b82d0bbc4d1514 Mon Sep 17 00:00:00 2001 From: Mikael Vandmo Date: Sat, 18 Jul 2026 10:00:47 +0200 Subject: [PATCH] Add sample Java file for testing --- test-sample.java | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 test-sample.java 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); + } +}