From 7f149cb75120721086bb461fc1ef9a8a8153a7e9 Mon Sep 17 00:00:00 2001 From: ARKA GHOSH Date: Mon, 21 Oct 2024 23:07:47 +0530 Subject: [PATCH 1/3] Added hello_world in Adb Language --- hello_world.adb | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 hello_world.adb diff --git a/hello_world.adb b/hello_world.adb new file mode 100644 index 0000000..032ae0b --- /dev/null +++ b/hello_world.adb @@ -0,0 +1,6 @@ +with Ada.Text_IO; -- Import the Text_IO package for input & output + +procedure Hello_World is -- Define the procedure named Hello_World +begin + Ada.Text_IO.Put_Line ("Hello,World!"); -- Print "Hello, World!" to console +end Hello_World; -- End of Hello_World procedure \ No newline at end of file From f1b6ecdf9ad8a2bc79fb9873bd7e99566f445feb Mon Sep 17 00:00:00 2001 From: ARKA GHOSH Date: Mon, 21 Oct 2024 23:19:39 +0530 Subject: [PATCH 2/3] Added hello_world in Ada Language --- hello_world.ada | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 hello_world.ada diff --git a/hello_world.ada b/hello_world.ada new file mode 100644 index 0000000..032ae0b --- /dev/null +++ b/hello_world.ada @@ -0,0 +1,6 @@ +with Ada.Text_IO; -- Import the Text_IO package for input & output + +procedure Hello_World is -- Define the procedure named Hello_World +begin + Ada.Text_IO.Put_Line ("Hello,World!"); -- Print "Hello, World!" to console +end Hello_World; -- End of Hello_World procedure \ No newline at end of file From ccf1762da07be73fd17d365cb103ed4ff7c559e8 Mon Sep 17 00:00:00 2001 From: ARKA GHOSH Date: Tue, 22 Oct 2024 12:02:31 +0530 Subject: [PATCH 3/3] Delete hello_world.adb --- hello_world.adb | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 hello_world.adb diff --git a/hello_world.adb b/hello_world.adb deleted file mode 100644 index 032ae0b..0000000 --- a/hello_world.adb +++ /dev/null @@ -1,6 +0,0 @@ -with Ada.Text_IO; -- Import the Text_IO package for input & output - -procedure Hello_World is -- Define the procedure named Hello_World -begin - Ada.Text_IO.Put_Line ("Hello,World!"); -- Print "Hello, World!" to console -end Hello_World; -- End of Hello_World procedure \ No newline at end of file