9 lines
276 B
ObjectPascal
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');
|