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-- ab_00.adb
16
17
18with Text_IO;
19use Text_IO;
20
21with SY.A_P;
22with SY.B_P;
23
24procedure AB_00 is
25
26begin
27
28 Put("A_00");
29 New_Line;
30
31 SY.A_P.A;
32
33 Put("A_00");
34 New_Line;
35
36 SY.B_P.A;
37
38 Put("A_00");
39 New_Line;
40
41end AB_00;