From Clomosy Docs
procedure Console.Text(const AMessage: string);
Console applications are 32-bit programs that run in a console window without a graphical interface. These applications generally do not require much user input and perform a limited number of functions.
NOTE: It is useful for the Windows operating system.
Example
Var
i : Integer;
{
for (i=0 to 5)
console.text('Counter: '+IntToStr(i));
console.text('Time:'+DateTimeToStr(Now));
}