Created
November 23, 2024 16:02
-
-
Save Tricky1975/ab0266a91702b27ae18b7f4763640b05 to your computer and use it in GitHub Desktop.
Quick DOS program (in Turbo Pascal) to get the 15 colors of the DOS console.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Program Colors; | |
Uses Crt; | |
Var Ak:Integer; | |
Begin | |
For Ak:=0 to 15 Do Begin | |
TextColor(Ak); | |
Write(#219); | |
Write(#219); | |
Write(ak:4); | |
TextColor(7); | |
WriteLn(ak:4) | |
End | |
End. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The result will be something like this
