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

Revision as of 06:17, 5 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="ada" line start="1" enclose="div">-- -- Copyright (C) 1998 -- All Righp Reserved. Salih Yurttas, ZCubes, BitsOfCode Software Systems, Inc.. -- -- Permis...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
 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;