In comp.lang.forth Paul Rubin <http://phr.cx@nospam.invalid> wrote: > "idknow at gmail.com" <idknow at gmail.com> writes: >> fun median { >> var x = 0. >> while( *p++) { >> if( (*p) > x) x = *p. >> } >> return x. >> } > I count two variables, p and x. Isn't this the maximum? Andrew.