I just put a tardist of the University of New York's free Ada
Translator / Interpreter onto my homepage. Please feel free
to download it from:
http://www.baigar.de/irix/AdaEd-1.12.tardist
It is tested to run on Indigo2 and Octane (6.5.22) and to
execute a simple "hello world" do the following steps after
installation:
Write your "hello world" e.g. as follows:
with text_io; use text_io; -- This gets the IO facility.
procedure Hello is -- Main, but no special name is
needed.
begin
Put_line("Hello, World!"); -- Put_Line is from Text_IO.
end Hello;
Make a library in the same path and compile/translate:
mkdir testlib
adacomp -n -l testlib hello.ada
Bind and execute
adabind -m Hello testlib
adaexec -m Hello testlib
Enjoy, for more information look onto AdaEd's homepage,
best regards,
Erik.