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

9 lines
276 B
ObjectPascal

##
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');