doc.yeswiki.pro/node_modules/shiki/samples/ada.sample
2023-05-20 19:38:02 +03:00

13 lines
No EOL
240 B
Text

with Ada.Text_IO; use Ada.Text_IO;
procedure Learn is
subtype Alphabet is Character range 'A' .. 'Z';
begin
Put_Line ("Learning Ada from " & Alphabet'First & " to " & Alphabet'Last);
end Learn;
-- From https://learn.adacore.com/