I know, it's a noob question but..... I don't know :(
I am using dotnet-gnat, I'm having trouble using the commands of the platform. Net in Ada ... I can use the WriteLine, but the ReadLine command, I can not .... How to know the correct way to use some command?
My code:
with Ada.Text_IO, MSSyst.Console;
use Ada.Text_IO, MSSyst.Console;
procedure ada_net is
begin
Put("Ola mundo");
New_line;
WriteLine("Ola mundo");
--ReadLine;
end ada_net;
ReadLine code:
function ReadLine return access MSSyst.String.Typ'Class;
pragma Export (CIL, ReadLine, "ReadLine");
Thanks.