Skip to content

Instantly share code, notes, and snippets.

@RobinMalfait
Created February 25, 2013 22:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RobinMalfait/5033855 to your computer and use it in GitHub Desktop.
Save RobinMalfait/5033855 to your computer and use it in GitHub Desktop.
PASCAL: Standard Template
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