|
Contents | Previous | Next | Subchapters |
| Syntax |
environment
|
| See Also | environment number |
| Abbreviation |
e
|
| Menu Command | Debug | List Environment |
clear
function f(x) begin
stop
end
function g(x) begin
f(2 * x)
end
and you enter
include TEMP.OMS
g(1)
O-Matrix will activate the debugger window. If you then enter
env
O-Matrix will respond
Currently Executing Environments
index function line file
1 16
2 g 6 C:\OMWIN\TEMP.OMS
3 f 3 C:\OMWIN\TEMP.OMS
Current Debugger Environment Settings
index function file
3 f C:\OMWIN\TEMP.OMS
The first executing environment corresponds to the g(1) command and
is not inside of any file or function.
The line number for this entry may
depends on other commands you entered during this session.
The second executing environment corresponds to the f(2 * x)
statement in TEMP.OMS.
The third executing environment corresponds to the stop
statement in TEMP.OMS.
The current debugger environment settings determine which function
and file are used when listing and printing active
variables.