Next: Conditions
Up: Expressions
Previous: The Operator `` *''
  Contents
This operator may only be used in the following ways:
- The expression `` list1 / list2'' yields the
list which contains all elements of list1 which are not elements of
list2.
- The expression `` list / number'' yields the list
which contains all elements of list without the leftmost
number elements, if number is positive, or without the rightmost
- number elements, if number is negative.
- The expression `` number1 / number2'', where
number2 is not 0, yields the quotient of number1 and
number2.
Bjoern Beutel