Yurttas/PL/IL/Ada-95/F/05/00/B/io boolean 01.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-- date   : January 1, 1998.
12-- author : Salih Yurttas.
13
14-- purpose : Input/Output of an boolean;
15--           input and output files are default files which are
16--           (keyboard/screen).
17
18-- io_boolean_01.adb
19
20
21with IO_Boolean_P; use IO_Boolean_P;
22
23procedure IO_Boolean_01 is
24
25  Data : Boolean;
26
27begin
28
29  Data := Get_Boolean("--> Input Data in Boolean : ");
30
31  Put_Boolean("Data /",
32              Data);
33
34end IO_Boolean_01;