EMA-XPS Online


/

/
=

syntax: (/ {<number> ...})

        ==> <number>

The arithmetic operation (/ x) reciprocates the
argument. / with more than one argument divides the
first argument through all the others.

example:       >(/ 3 4 5)
               3/20


EMA-XPS Online