home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Education Master 1994 (4th Edition)
/
EDUCATIONS_MASTER_4TH_EDITION.bin
/
files
/
progscal
/
ptutor2b
/
goodform.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1988-01-15
|
435b
|
17 lines
program Good_Programming_Style;
begin
Write('Programming style ');
Write ('is a matter of ');
Writeln ('personal choice');
Write('Each person ');
Write ('can choose ');
Writeln ('his own style');
Write('He can be ');
Write ('very clear, or ');
Writeln ('extremely messy');
end.