Yurttas/PL/IL/Ada-95/ProgUnits/P/p 01.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_01.adb
16
17
18with Text_IO; use Text_IO;
19
20with P_01_P; use P_01_P;
21
22procedure P_01 is
23
24 package I_IO is new Integer_IO(Integer); use I_IO;
25
26 a : Integer;
27
28begin
29
30 P_1(a);
31
32 Put(a);
33
34 New_Line;
35
36end P_01;