From Clomosy Docs

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.

Example

Var
 i : Integer;

{
 for (i=0 to 5)
  console.text('Counter: '+IntToStr(i));

  console.text('Time:'+DateTimeToStr(Now));
}

Output:
ConsoleExampleV1.1.png

See Also