RosettaCodeData/Task/Terminal-control-Coloured-text/PascalABC.NET/terminal-control-coloured-text.pas

9 lines
276 B
ObjectPascal
Raw Permalink Normal View History

2024-07-13 15:19:22 -07:00
##
uses System;
Console.ForegroundColor := ConsoleColor.Red;
Console.BackgroundColor := ConsoleColor.Yellow;
Console.WriteLine('Red on Yellow');
Console.ForegroundColor := ConsoleColor.Black;
Console.BackgroundColor := ConsoleColor.White;
Console.WriteLine('Black on White');