TP-programmation-imperative/tp07/afficher_un_entier.adb
2023-06-10 21:03:54 +02:00

8 lines
142 B
Ada
Executable file

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;