Question about manual content: example(append); example("lambda");



On 2013-11-08, Jorge Barros de Abreu <ficmatin10 at gmail.com> wrote:

> line manual(Help) we have:
>
> example(append);
> example("lambda");
>
> My question is why 'example("lambda")' work and 'example(lambda)' not work?
>
> Why both 'example("append")' and 'example(append)' work?
>
> Do you know what is the difference betweem append and lambda for the
> "example" command?

Well, example(lambda) --> error is a bug. But aside from that, some
examples have to be enclosed in "" because they are operators which are
recognized specially by the parser. For example, example(if) is an
error because 'if' should be followed by a Boolean expression. So to
make the parser happy, it has to be example("if").

best,

Robert Dodier