kjelsrud.dev/node_modules/shiki/samples/ada.sample

13 lines
240 B
Text
Raw Normal View History

2023-07-19 21:31:30 +02:00
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/