geany/data/templates/files/program.pas
Colomban Wendling 771934ae29 Don't translate program name directive in Pascal file template
Pascal code only accepts an identifier in the program name directive,
but {untitled} wildcard gets replaced with a translated string that may
not be a valid Pascal identifier.  Moreover, the directive being part
of the source of the program it's good practice for it to be in English
anyway.

Closes #3602314.
2013-03-08 18:32:47 +01:00

13 lines
74 B
ObjectPascal

{fileheader}
program untitled;
uses crt;
var i : byte;
BEGIN
END.