home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer 7500
/
MAX_PROGRAMMERS.iso
/
INFO
/
PASCAL
/
PASCSRC.ARC
/
INTVAR.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Pascal/Delphi Source File
|
1988-01-15
|
327 b
|
15 lines
(* Chapter 3 - Program 1 *)
program Integer_Variable_Demo;
var Count : integer;
X,Y : integer;
begin
X := 12;
Y := 13;
Count := X + Y;
Writeln('The value of X is',X:4);
Writeln('The value of Y is',Y:5);
Writeln('And Count is now ',Count:6);
end.