Yurttas/PL/IL/Ada-95/ProgUnits/P/p 03.adb
Jump to navigation
Jump to search
1--
2-- Copyright (C) 1998
3-- All Righp Reserved. Salih Yurttas, ZCubes, BitsOfCode Software Systems, Inc..
4--
5-- Permission to use, copy, modify, and distribute this
6-- software and ip 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-- p_03.adb
16
17
18with Text_IO; use Text_IO;
19
20with P_03_P; use P_03_P;
21
22procedure P_03 is
23
24 a : Integer := 8;
25 pa : PInt;
26
27begin
28
29 P1(a, pa);
30 New_Line(2);
31
32 Put(pa.all);
33 New_Line;
34
35end P_03_P;