the ada programming language.
links.
- ada tutorials.
- introduction to ada pdf.
- awesome ada.
- alire, the ada library repository.
- installing gprbuild on openbsd.
notes.
- make GNAT ada binaries smaller by using GNAT.IO instead of Ada.Text_IO and
linking against libgnat (results ~18KB):
gnatmake hello.adb -O2 -bargs -shared
- generate a tags file for vim with:
gnatxref -v hello.adb > tags