Ada Programming/Libraries/Ada.Integer Text IO

From Wikibooks, the open-content textbooks collection

Jump to: navigation, search

Ada Lovelace 1838.jpg

Contents


[edit] The package Integer_Text_IO

Used for simple Input Output (IO) of integers in text format. The package is an instantiation of Ada.Text_IO.Integer_IO for the type Standard.Integer;


with Ada.Text_IO;

package Ada.Integer_Text_IO is new Ada.Text_IO.Integer_IO (Integer);

[edit] See also

[edit] Wikibook

[edit] Ada 95 Reference Manual

[edit] Ada 2005 Reference Manual

[edit] Ada Quality and Style Guide