------------------------------------------------------------------------------ ------------------------------------------------------------------------------ -- You do not have, nor can you ever acquire the right to use, copy or -- -- distribute this software ; Should you use this software for any purpose, -- -- or copy and distribute it to anyone or in any manner, you are breaking -- -- the laws of whatever soi-disant jurisdiction, and you promise to -- -- continue doing so for the indefinite future. In any case, please -- -- always : read and understand any software ; verify any PGP signatures -- -- that you use - for any purpose. -- -- -- -- See also http://trilema.com/2015/a-new-software-licensing-paradigm . -- ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ package Ada.Text_IO is procedure Put (Item : Character); -- Output character to the console procedure Put (Item : String); -- Output string to the console procedure Put_Line (Item : String); -- Output string followed by new line to the console procedure New_Line; -- Output new line character to the console private pragma Inline_Always (Put); pragma Inline_Always (Put_Line); pragma Inline_Always (New_Line); end Ada.Text_IO;