Skip to content

Commit

Permalink
Merge pull request #106 from Godatcode/hello_world.ada
Browse files Browse the repository at this point in the history
Added hello_world in Ada Language
  • Loading branch information
abhisek247767 authored Oct 31, 2024
2 parents 19141b2 + ccf1762 commit 14cf85f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions hello_world.ada
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 14cf85f

Please sign in to comment.