No edit summary
No edit summary
Line 3: Line 3:
The simplest program :
The simplest program :


  <syntaxhighlight>
  <syntaxhighlight lang="ada">
with TEXT_IO;
with TEXT_IO;
           -----------
           -----------

Revision as of 00:09, 4 March 2025

Examples

The simplest program :

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

A simple ASCII JSON reader/writer program : JSON package