|
Contents | Previous | Next | Subchapters |
| Syntax |
execmat(mat) |
| See Also | eval , execfile |
x = 5
function f(x) begin
execmat("print x")
end
f(10)
O-Matrix will respond
5
even though inside the function f the variable
x has the value 10.
This is because the command print x is executed in the
context of the main program.