Yurttas/PL/IL/Ada-95/ProgUnits/P/p 01 p.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_p.adb
16
17
18package body P_01_P is
19
20 procedure PP_0 is new P_0(Compare => ">=");
21
22 procedure P_1(a2 : out Integer) is
23 k1,
24 k2 : Integer;
25 begin
26
27 k1 := 1;
28 k2 := 2;
29
30 a2 := k1;
31
32 PP_0(a2);
33
34 end P_1;
35
36end P_01_P;