TP-programmation-imperative/tp_gps/premier_programme.adb

9 lines
210 B
Ada
Raw Permalink Normal View History

2023-06-10 19:03:54 +00:00
with Text_IO;
use Text_IO;
-- Programme minimal qui affiche juste un message.
procedure Premier_Programme in
begin
Put_Line ("Bravo ! Vous avez réussi à exécuter le programme.");
end Premier_Programme.