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


<syntaxhighlight lang="Ada">
<source lang="php">
           -----------
           -----------
procedure HELLO_WORLD
procedure HELLO_WORLD
Line 10: Line 10:
   PUT_LINE( "Hello_world !" );
   PUT_LINE( "Hello_world !" );
end HELLO_WORLD;
end HELLO_WORLD;
‎</syntaxhighlight>
‎</source>


using "syntaxhighlight".
using "syntaxhighlight".

Revision as of 18:49, 21 February 2025

Examples

The simplest program :

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

using "syntaxhighlight".