PEEK (int-exp)

Reads the data byte stored in the memory location referred to by int-exp.

Program Example.

00100 REM The PEEK function
00110 PRINT PEEK(4000)
00120 POKE 4000,100
00130 PRINT PEEK(4000)
00140 END

Try it

See also POKE