set path=( ~/bin /usr/ucb /bin /usr/{bin,local,new,hosts} /usr/lib/cmplrs/ada2.05/bin . ) squire 70 > a.mklib -i < ONE TIME per sub directory, initialize Ada libr > 3 versions of VADS are available on this machine: Target Name Version VADS Location 1 R2000_TARGET 5.5 /usr/lib/cmplrs/asapp2.05 2 R2000_TARGET 5.5 /usr/lib/cmplrs/asapp2.05 3 SELF_TARGET 5.5 /usr/lib/cmplrs/ada2.05 Selection (q to quit): 3 < I typed 3 > squire 84 > ada hello.a < do a compilation > squire 95 > a.ld hello < link to make an executable > squire 97 > a.out < execute the program just linked, standard a.out > hello. squire 98 > cat hello.a < look at source code, compiled,linked above> with text_io; use text_io; procedure hello is begin put_line("hello."); end hello; squire 101 > man ada < look at the manual pages > squire 35 > a.db hello