Ada 83 examples: Difference between revisions
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" Tag: Replaced |
No edit summary |
||
| Line 13: | Line 13: | ||
</pre> | </pre> | ||
A simple ASCII JSON reader program : | A simple ASCII JSON reader/writer program : | ||
[[JSON package]] | [[JSON package]] | ||
Revision as of 09:39, 3 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