From fdb652aee543d391365125bea8c9030221bae4b0 Mon Sep 17 00:00:00 2001 From: Shubham Aggarwal Date: Sat, 6 Oct 2018 14:19:56 +0530 Subject: [PATCH] added HelloWorld in ADA --- HelloWorld.adb | 5 +++++ README.md | 2 ++ 2 files changed, 7 insertions(+) create mode 100644 HelloWorld.adb diff --git a/HelloWorld.adb b/HelloWorld.adb new file mode 100644 index 00000000..529f3d40 --- /dev/null +++ b/HelloWorld.adb @@ -0,0 +1,5 @@ +with Ada.Text_IO; use Ada.Text_IO; +procedure Hello is +begin + Put_Line ("Hello, world!"); +end Hello; diff --git a/README.md b/README.md index 02d5fa6e..bb2a6d02 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,8 @@ This repository should eventually contain the famous "Hello World" program in al - Add your language to this file in the below list. ## Languages Covered +- [x] **ADA** +Ada is a structured, statically typed, imperative, and object-oriented high-level computer programming language, extended from Pascal and other languages. It has built-in language support for design-by-contract, extremely strong typing, explicit concurrency, tasks, synchronous message passing, protected objects, and non-determinism. Ada improves code safety and maintainability by using the compiler to find errors in favor of runtime errors. - [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.