Purpose:
Library for Delphi-Console-Applications | Supports Windows 11 (and earlier)
Usage:
Include the location of the unit "crt.pas" to the searchpath in your project settings and add the unit to the uses-clauses of your project. For the use of extended functions of the library it could be necessary to add further units (e.g. "ply.console.pas", or "ply.console.extended.pas") to the uses-clauses. To demonstrate the use of the library, I have added Demo-Applications.
Feature-List:
Minimal Console-App:
program Demo01_Minimal_Console_App;
uses crt;
begin
TextBackground(White);
Textcolor(Red);
ClrScr;
Writeln('Hello World!');
Readkey;
end.
Contributions:
Contributions are welcome, either as Pull Requests or bug reports. If you want to report a bug or you are missing a feature, contact me by email (wolfgang[at]playcom.de).
Screenshots: