TP-programmation-imperative/td07/afficher_un_entier.adb

8 lines
142 B
Ada
Raw Normal View History

2023-06-10 19:03:54 +00:00
with Ada.Integer_Text_IO;
procedure Afficher_Un_Entier (N: in Integer) is
begin
Ada.Integer_Text_IO.Put (N, 1);
end Afficher_Un_Entier;