Created
February 25, 2013 22:17
-
-
Save RobinMalfait/5033855 to your computer and use it in GitHub Desktop.
PASCAL: Standard Template
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 program_name; | |
Uses | |
crt; | |
CONST | |
intBackground = 1; // Background Color | |
intText = 15; // Text Color | |
Begin | |
// Opmaak | |
textBackground(intBackground); | |
textColor(intText); | |
ClrScr; | |
(*-- Start Code --*) | |
(*-- Stop Code --*) | |
// Wacht tot er een laatste toets wordt ingeduwd | |
Repeat Until KeyPressed; | |
End. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment