1--
2-- Copyright (C) 1998
3-- All Rights Reserved. Salih Yurttas, ZCubes, BitsOfCode Software Systems, Inc..
4--
5-- Permission to use, copy, modify, and distribute this
6-- software and its documentation for EDUCATIONAL purposes
7-- and without fee is hereby granted provided that this
8-- copyright notice appears in all copies.
9--
10--
11
12-- date : January 1, 1998.
13-- authorĀ : Salih Yurttas.
14
15-- aa_01.adb
16
17
18with Text_IO;
19use Text_IO;
20
21with SY.A_P;
22use SY.A_P;
23
24with SY.A_P.AA_P;
25use SY.A_P.AA_P;
26
27procedure AA_01 is
28
29begin
30
31 Put("AA_01");
32 New_Line;
33
34 A;
35
36 Put("AA_01");
37 New_Line;
38
39 AA;
40
41 Put("AA_01");
42 New_Line;
43
44end AA_01;