Skip to content
This repository has been archived by the owner on Oct 1, 2019. It is now read-only.

Ada language #2079

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions HelloWorld.adb
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
with Ada.Text_IO;
procedure HelloWorld is
begin
Ada.Text_IO.Put("Hello World!");
Ada.Text_IO.New_Line;
end HelloWorld;
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ This repository should eventually contain the famous "Hello World" program in al
- [x] **ABAP**
ABAP is a high-level programming language created by the German software company SAP SE. It is currently positioned, alongside Java, as the language for programming the SAP Application Server, which is part of the NetWeaver platform for building business applications.

- [x] **Ada**
In addition to serving European and American military systems, Ada's excellent security control functions are also widely used in commercial rocket satellites, air traffic control, railway transportation, banking and other fields

- [x] **Assembly**
An assembly language, often abbreviated asm, is any low-level programming language in which there is a very strong correspondence between the program's statements and the architecture's machine code instructions. Each assembly language is specific to a particular computer architecture and operating system.

Expand Down