I am practicing Ada and made a simple program that prints a word and an integer. The problem is that the console output looks like:
Yes 55
When I want it to look like:
Yes55
I do not know why there is a giant space, here is my code:
WITH Ada.Text_IO; USE Ada.Text_IO;
PROCEDURE Practice IS
PACKAGE MyInt_IO IS NEW Ada.Text_IO.Integer_Io(Integer);
USE MyInt_IO;
BEGIN
Put("Yes"); Put(55);
END Practice;
Thanks!