diff options
Diffstat (limited to 'src/algebra/mkfunc.spad.pamphlet')
-rw-r--r-- | src/algebra/mkfunc.spad.pamphlet | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/algebra/mkfunc.spad.pamphlet b/src/algebra/mkfunc.spad.pamphlet index 1770e7c8..f53272e1 100644 --- a/src/algebra/mkfunc.spad.pamphlet +++ b/src/algebra/mkfunc.spad.pamphlet @@ -43,15 +43,15 @@ InputForm(): ++ \spad{lambda(code, [x1,...,xn])} returns the input form ++ corresponding to \spad{(x1,...,xn) +-> code} if \spad{n > 1}, ++ or to \spad{x1 +-> code} if \spad{n = 1}. - "+" : (%, %) -> % + + : (%, %) -> % ++ \spad{a + b} returns the input form corresponding to \spad{a + b}. - "*" : (%, %) -> % + * : (%, %) -> % ++ \spad{a * b} returns the input form corresponding to \spad{a * b}. - "/" : (%, %) -> % + / : (%, %) -> % ++ \spad{a / b} returns the input form corresponding to \spad{a / b}. - "**" : (%, NonNegativeInteger) -> % + ** : (%, NonNegativeInteger) -> % ++ \spad{a ** b} returns the input form corresponding to \spad{a ** b}. - "**" : (%, Integer) -> % + ** : (%, Integer) -> % ++ \spad{a ** b} returns the input form corresponding to \spad{a ** b}. 0 : constant -> % ++ \spad{0} returns the input form corresponding to 0. |