Yurttas/PL/IL/Ada-95/F/05/00/S/io string n 01.adb

Revision as of 05:44, 5 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="ada" line start="1" enclose="div">-- -- Copyright (C) 1998 -- All Rights Reserved. Salih Yurttas, ZCubes, BitsOfCode Software Systems, Inc.. -- -- Permi...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
 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-- purpose : Input/Output of a string;
16--           input and output files are default files which are
17--           (keyboard/screen).
18
19-- io_string_n_01.adb
20
21
22with IO_String_N_P; use IO_String_N_P;
23
24procedure IO_String_N_01 is
25
26  Data : String_8;
27
28begin
29
30  Data := Get_String("--> Input Data as String_8 : ");
31
32  Put_String("Data /",
33             Data);
34
35end IO_String_N_01;