summaryrefslogtreecommitdiff
path: root/vscode/01-helloworld/src
diff options
context:
space:
mode:
authorKamal Wickramanayake <kamal@inbox.lk>2026-02-14 19:35:29 +0530
committerKamal Wickramanayake <kamal@inbox.lk>2026-02-14 19:35:29 +0530
commit2acae77eaa61c6dd9db69a19fc71114369cfa232 (patch)
treed3d1c80b64b3435e63fff8f503444868a8442dbc /vscode/01-helloworld/src
parent01edac7edf4154c77ffde449ebcb072c4995652e (diff)
Added VSCode helloworld sample application.
Diffstat (limited to 'vscode/01-helloworld/src')
-rw-r--r--vscode/01-helloworld/src/App.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/vscode/01-helloworld/src/App.java b/vscode/01-helloworld/src/App.java
new file mode 100644
index 0000000..14c9abd
--- /dev/null
+++ b/vscode/01-helloworld/src/App.java
@@ -0,0 +1,5 @@
+public class App {
+ public static void main(String[] args) throws Exception {
+ System.out.println("Hello, World!");
+ }
+}