You've already forked code_examples_server
mirror of
https://github.com/AdaCore/code_examples_server.git
synced 2026-02-12 12:45:18 -08:00
16 lines
321 B
Ada
16 lines
321 B
Ada
-- A simple Hello, World program
|
|
with Ada.Text_IO; use Ada.Text_IO;
|
|
|
|
procedure Hello is
|
|
begin
|
|
-- end readonly
|
|
-- #region editable_1
|
|
Put_Line ("Hello, World");
|
|
-- #endregion editable_1
|
|
-- begin readonly
|
|
-- this is a read only comment
|
|
-- end readonly
|
|
-- this is an editable comment
|
|
-- begin readonly
|
|
end Hello;
|