From afdf1af66412ad5214508231f4b73a35153cbe1f Mon Sep 17 00:00:00 2001 From: Maximilian Date: Wed, 26 Jun 2024 13:26:15 +0200 Subject: [PATCH] first commit --- .vscode/settings.json | 7 +++++++ README.md | 18 ++++++++++++++++++ bin/App.class | Bin 0 -> 562 bytes src/App.java | 5 +++++ 4 files changed, 30 insertions(+) create mode 100644 .vscode/settings.json create mode 100644 README.md create mode 100644 bin/App.class create mode 100644 src/App.java diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..e112a70 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,7 @@ +{ + "java.project.sourcePaths": ["src"], + "java.project.outputPath": "bin", + "java.project.referencedLibraries": [ + "lib/**/*.jar" + ] +} diff --git a/README.md b/README.md new file mode 100644 index 0000000..7c03a53 --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +## Getting Started + +Welcome to the VS Code Java world. Here is a guideline to help you get started to write Java code in Visual Studio Code. + +## Folder Structure + +The workspace contains two folders by default, where: + +- `src`: the folder to maintain sources +- `lib`: the folder to maintain dependencies + +Meanwhile, the compiled output files will be generated in the `bin` folder by default. + +> If you want to customize the folder structure, open `.vscode/settings.json` and update the related settings there. + +## Dependency Management + +The `JAVA PROJECTS` view allows you to manage your dependencies. More details can be found [here](https://github.com/microsoft/vscode-java-dependency#manage-dependencies). diff --git a/bin/App.class b/bin/App.class new file mode 100644 index 0000000000000000000000000000000000000000..55ff355170cf3bef617c9ba94f919b2f54fa5ef2 GIT binary patch literal 562 zcmZuu%T5A85UhcPg%t!r@U7q@L1X0T0b@dp#sg6k3?4iUFu@_qE?E|%pQQ&)Joo{A zl(806Lc(FYr>A+eP6rIz(htMJL&pI;#fr9L~hD<{dwT4UII&4re$}? z336iz?UrxI?^8v|UL}TAf#jvKZTGNn=X!R#Xki_jCN}=$re7qmg@SB6$sM#5#aj?2O^jhjd2b+p<8ArinD1vVJM}QDdTr8u>s?02yBM0w@y^LUsF@V8u zjxjNAU{11%V;(7zq1dnx0y~T$?EV0S CgmL)* literal 0 HcmV?d00001 diff --git a/src/App.java b/src/App.java new file mode 100644 index 0000000..0a839f9 --- /dev/null +++ b/src/App.java @@ -0,0 +1,5 @@ +public class App { + public static void main(String[] args) throws Exception { + System.out.println("Hello, World!"); + } +}