|
Contents | Previous | Next | Subchapters |
| Syntax |
variables |
| See Also | defined , active |
O> prompt you enter
clear
x = 1
const y = 2
function f() begin
global x
z = 3
variables
end
f
O-Matrix will respond
x,int,1,1,f,
z,int,1,1,f,
There is nothing listed in the sixth column
because the scope of f is not restricted to a particular file.
The function f is listed in the fifth column for x
because the scope of the global statement is limited to the function.
The name y does not appear because it
corresponds to a constant.