Hi all,
I am starting to experiment with Lazarus/FPC (latest build 0.9.30.4) on the Raspberry Pi (Wheezy). First tests using GUI (LCL) Applications looked promising. Then I tried a console application, the very sophisticated code is:
Program TestConsole;
begin
writeln('Hello World');
readln;
end.
The code looks familiar, I guess :-) Please don't tell me that this problem has been solved before, and that there are libraries out there dealing with it.
Unfortunately this fine code piece won't work as expected. The program will run, I can even step through the code using the debugger, but no terminal will open. Running it from the command line doesn't produce a terminal as well.
The same sample works well on Windows.
Is there anything known about this issue?
Thanks
Armin.