;
EXAMINE -- Displays the values of one or more variables. E is the legal
abbreviation for EXAMINE.
> EXAMINE r (What is the current value of variable r?)
TEST\r = 35.79
> EXAMINE -Ascii c (What is the ASCII value of variable c?)
TEST\c = 54
> EXAMINE myrec (What is the value of every field in record myrec?)
TEST\myrec.ID = 3
TEST\myrec.G = 'A'
> EXAMINE beret (What is the value of every element in array beret?)
TEST\beret(1,1) = 100
TEST\beret(1,2) = 200 (Enter the command "HELP ARRAYS" to get info on
TEST\beret(2,1) = 150 specifying parts of an array.)
TEST\beret(2,2) = 250