Ada 83 examples

Revision as of 21:59, 1 March 2025 by Vmo (talk | contribs) (Replaced content with "== Examples == The simplest program : <pre style="font-family:'Noto Mono';background:black;color:lime"> with TEXT_IO; ----------- procedure HELLO_WORLD is ----------- begin TEXT_IO.PUT_LINE( "Hello_world !" ); end; </pre> A simple ASCII JSON reader program : JSON package")

Examples

The simplest program :

with TEXT_IO;
          -----------
procedure HELLO_WORLD
is        -----------
begin
  TEXT_IO.PUT_LINE( "Hello_world !" );
end;

A simple ASCII JSON reader program : JSON package