home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Hack-Phreak Scene Programs
/
cleanhpvac.zip
/
cleanhpvac
/
PASSRC.ZIP
/
INTVAR2.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1991-02-04
|
477b
|
29 lines
(* Chapter 3 - Program 2 *)
program More_Integer_Demos;
var X,Y : integer;
Count : integer;
begin
X := 12;
Y := 13;
Count := X + Y;
Write('The value of X is');
Writeln(X:4);
Write('The value of Y is');
Writeln(Y:5);
Write('And Count is now ');
Write(Count:6);
Writeln;
end.
{ Result of execution
The value of X is 12
The value of Y is 13
And Count is now 25
}