瀏覽代碼

Base project

Baglio Tabifata 4 年之前
父節點
當前提交
ed56285872
共有 2 個文件被更改,包括 19 次插入2 次删除
  1. 14 2
      README.md
  2. 5 0
      src/App.java

+ 14 - 2
README.md

@@ -1,2 +1,14 @@
-# DuPAL_Analyzer
-
+## 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
+
+## Dependency Management
+
+The `JAVA DEPENDENCIES` view allows you to manage your dependencies. More details can be found [here](https://github.com/microsoft/vscode-java-pack/blob/master/release-notes/v0.9.0.md#work-with-jar-files-directly).

+ 5 - 0
src/App.java

@@ -0,0 +1,5 @@
+public class App {
+    public static void main(String[] args) throws Exception {
+        System.out.println("Hello, World!");
+    }
+}