From c7aa2f56d80ad5c9206fb71139960c940234acb4 Mon Sep 17 00:00:00 2001 From: Nastya_Kozlova Date: Fri, 22 Dec 2023 22:26:02 +0400 Subject: [PATCH] =?UTF-8?q?=D0=A1=D0=BE=D0=B7=D0=B4=D0=B0=D0=BD=D0=B8?= =?UTF-8?q?=D0=B5=20=D0=BF=D1=80=D0=BE=D0=B5=D0=BA=D1=82=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AirFighter/.vscode/settings.json | 7 +++++++ AirFighter/README.md | 18 ++++++++++++++++++ AirFighter/src/Main.java | 5 +++++ 3 files changed, 30 insertions(+) create mode 100644 AirFighter/.vscode/settings.json create mode 100644 AirFighter/README.md create mode 100644 AirFighter/src/Main.java diff --git a/AirFighter/.vscode/settings.json b/AirFighter/.vscode/settings.json new file mode 100644 index 0000000..e112a70 --- /dev/null +++ b/AirFighter/.vscode/settings.json @@ -0,0 +1,7 @@ +{ + "java.project.sourcePaths": ["src"], + "java.project.outputPath": "bin", + "java.project.referencedLibraries": [ + "lib/**/*.jar" + ] +} diff --git a/AirFighter/README.md b/AirFighter/README.md new file mode 100644 index 0000000..7c03a53 --- /dev/null +++ b/AirFighter/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/AirFighter/src/Main.java b/AirFighter/src/Main.java new file mode 100644 index 0000000..52f889c --- /dev/null +++ b/AirFighter/src/Main.java @@ -0,0 +1,5 @@ +public class Main { + public static void main(String[] args) throws Exception { + System.out.println("Hello, World!"); + } +}