Is there a configuration option in the Lazarus IDE that will turn on my terminal so that a program like:
program project1;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Classes
{ you can add units after this };
{$R *.res}
begin
Writeln('This is Free Pascal');
Writeln('Press enter key to close');
Readln;
end.
will show up in my terminal? I realize this is a noob question, but I'd like for this to work the same way the tutorial does