Yurttas/PL/IL/Ada-95/ProgUnits/P/p 02 p.adb

From ZCubes Wiki
Jump to navigation Jump to search
 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-- p_02_p.adb
16
17
18package body P_02_P is
19
20  procedure P_2(a2 : out Integer) is
21    k1,
22    k2  : Integer;
23  begin
24
25    k1 := 1;
26    k2 := 2;
27
28    a2 := k1;
29
30    P(a2);
31
32  end P_2;
33
34end P_02_P;