Relative Content

Tag Archive for ada

Annexes in Ada95

I want to know the differences between normative and informative annexes in Ada 95.

Ada integer text guess error, how to fix?

So I was creating a guessing game for Ada but yeah it doesn’t run. The error is in Line 25.
It says
guessing_game.adb:25:26: error: no candidate interpretations match the actuals:

Byte-wise iteration through an array in generic function in Ada

I have an array in a generic function where I want to iterate through it byte by byte. In the following example I am using Wide_Wide_Character‘s, so a character is 4 bytes long. With 3 given input characters, I would have 12 bytes to iterate through. How can I achieve this? Thanks for your time.