Browse Source

iniital setup

Dr-Swopt 2 weeks ago
commit
42f52fb27b
2 changed files with 14 additions and 0 deletions
  1. 9 0
      .gitignore
  2. 5 0
      Main.java

+ 9 - 0
.gitignore

@@ -0,0 +1,9 @@
+# Ignore compiled Java files
+*.class
+
+# Ignore VS Code settings
+.vscode/
+
+# Ignore Java project files (if using an IDE)
+*.iml
+.idea/

+ 5 - 0
Main.java

@@ -0,0 +1,5 @@
+public class Main {
+    public static void main(String[] args) {
+        System.out.println("Hello, Java in VS Code!");
+    }
+}