| Function |
| Syntax |
Function(S:STRING):FUNCTION Function(P:STRING, S:STRING):FUNCTION |
| Description |
| Example |
F := Function("Deg");
F;
Deg(...)
-------------------------------
Type(F);
FUNCTION
-------------------------------
Call(F,x+y^2);
2
-------------------------------
-- the Call-statement here is equivalent to:
Deg(x+y^2);
2
-------------------------------
Function("Insert");
Insert(L, I, O)
-------------------------------
Function("$list","Insert"); -- or "Function("$list.Insert")"
Insert(L, I, O)
-------------------------------
|
| See Also |