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