Suppose I have a "hello world” program written in Ada:
with Ada.Text_IO; -- Bibliothèque
-- Déclaration de la procédure "Hello"
procedure Hello is
begin
-- Imprimer "Hello, world!" à l'écran
Ada.Text_IO.Put_Line("Hello, world!");
end Hello;
When I complete the compilation process I get executable files; how can I reverse this to get back the source code?