@@ -0,0 +1,9 @@
+# Ignore compiled Java files
+*.class
+
+# Ignore VS Code settings
+.vscode/
+# Ignore Java project files (if using an IDE)
+*.iml
+.idea/
@@ -0,0 +1,5 @@
+public class Main {
+ public static void main(String[] args) {
+ System.out.println("Hello, Java in VS Code!");
+ }
+}