From 5dee24c0f3760bb3793993316ef6e131ff9d5a2f Mon Sep 17 00:00:00 2001 From: SarthakBorude Date: Wed, 30 Oct 2024 23:10:36 +0530 Subject: [PATCH] Added my first contribution --- .vscode/launch.json | 7 +++++++ scripts/hello_world_SarthakBorude.java | 9 +++++++++ 2 files changed, 16 insertions(+) create mode 100644 scripts/hello_world_SarthakBorude.java diff --git a/.vscode/launch.json b/.vscode/launch.json index 8d7326548..e09fddfc0 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,6 +1,13 @@ { "version": "0.2.0", "configurations": [ + { + "type": "java", + "name": "hello_world_SarthakBorude", + "request": "launch", + "mainClass": "hello_world_SarthakBorude", + "projectName": "hacktoberfest_ef5b2562" + }, { "name": "C/C++ Runner: Debug Session", "type": "lldb", diff --git a/scripts/hello_world_SarthakBorude.java b/scripts/hello_world_SarthakBorude.java new file mode 100644 index 000000000..72d83ec7e --- /dev/null +++ b/scripts/hello_world_SarthakBorude.java @@ -0,0 +1,9 @@ +/** + * hello_world_SarthakBorude + */ +public class hello_world_SarthakBorude { + + public static void main(String[] args) { + System.out.println("hello world ! enjoing this XD"); + } +} \ No newline at end of file