Is there a way in Ada to convert an Integer to character?
Ex:
TempInt := 1;
InGrid(RowIndex, ColumnIndex) := (ToCharacter(TempInt)); --This will be used to input a character value from an integer into an array of characters.
Is there any "ToCharacter" for Integer->Character conversion for Ada?