Created page with "== Examples == The simplest program : <syntaxhighlight lang="Ada" style="background-color: #e5e5e5"> ----------- procedure HELLO_WORLD is ----------- begin PUT_LINE( "Hello_world !" ); end HELLO_WORLD; ‎</syntaxhighlight> using "syntaxhighlight"."
 
No edit summary
Line 3: Line 3:
The simplest program :
The simplest program :


<syntaxhighlight lang="Ada" style="background-color: #e5e5e5">
<syntaxhighlight lang="ada">
           -----------
           -----------
procedure HELLO_WORLD
procedure HELLO_WORLD

Revision as of 16:50, 21 February 2025

Examples

The simplest program :

          -----------
procedure HELLO_WORLD
is        -----------
begin
  PUT_LINE( "Hello_world !" );
end HELLO_WORLD;
‎

using "syntaxhighlight".