Languages
Ada
Installing Ada on Ubuntu in TIDE
Ada
Ada is a structured, statically typed, imperative, wide-spectrum, and object-oriented high-level programming language used extensively in safety-critical systems.
Installation
The GNU Ada compiler (GNAT) is available directly in the Ubuntu package manager:
apt update
apt install -y gnatVerification
Check the compiler version:
gnat --versionCompilation & Execution
Create a hello.adb file:
with Ada.Text_IO; use Ada.Text_IO;
procedure Hello is
begin
Put_Line ("Hello, Ada in TIDE!");
end Hello;Compile and run:
gnatmake hello.adb
./hello