summaryrefslogtreecommitdiff
path: root/vscode/01-helloworld/src/App.java
blob: 14c9abd02286344aab6545d87efee212fa5a2d61 (plain)
1
2
3
4
5
public class App {
    public static void main(String[] args) throws Exception {
        System.out.println("Hello, World!");
    }
}