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

From ZCubes Wiki
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_00.adb
16
17
18with Text_IO; use Text_IO;
19
20with P_00_P; use P_00_P;
21
22procedure P_00 is
23
24  package I_IO is new Integer_IO(Integer); use I_IO;
25
26  procedure P_A is new P_0(Compare => ">=");
27
28  a : Integer;
29
30begin
31
32  P_A(a);
33
34  Put(a);
35
36  New_Line;
37
38end P_00;