From 6995e1fb95e3f9ed0e8042eaabd6dc4ae1605272 Mon Sep 17 00:00:00 2001 From: code-nick-python <2330458484@qq.com> Date: Tue, 7 May 2019 22:12:29 +0800 Subject: [PATCH 1/2] Create HelloWorld.adb --- HelloWorld.adb | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 HelloWorld.adb diff --git a/HelloWorld.adb b/HelloWorld.adb new file mode 100644 index 00000000..8f84ffe0 --- /dev/null +++ b/HelloWorld.adb @@ -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; From 9b817c98f437bc542d20470f80971c1318bf088b Mon Sep 17 00:00:00 2001 From: code-nick-python <2330458484@qq.com> Date: Tue, 7 May 2019 22:13:34 +0800 Subject: [PATCH 2/2] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 02d5fa6e..a51c424c 100644 --- a/README.md +++ b/README.md @@ -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.