|
Contents | Previous | Next | Subchapters |
| Syntax |
defined(id) |
| See Also | path , exists , mlmode exist |
| Value | Meaning |
| "undefined" | not defined and there is no corresponding automatic include file |
| "dll" | dll function |
| "label" | code transfer label |
| "constant" | constant |
| "variable" | variable |
| "function" | function defined by source code |
| "intrinsic" | intrinsic function |
| "file" | not defined but there is a corresponding automatic include file |
clear
function f(x) begin
return defined("x")
end
f(1)
O-Matrix will respond
variable