On 11.04.2013 20:47, Mattias Engdegård wrote:
> Do you really claim that any set of single- and two-letter codes is as
> good as another? I don't think so -- I believe "p" to be better
> answer for "postpone" than "4" or "mc" in English, one that will both
> reach the state of memorisation much quicker and reduce the risk of
> errors.
>
> And if you would agree to that, why should we deny others the same
> benefits?
For the same reason that I'd deny them the dubious benefit of, e.g., the
following:
nepredznačeno celo_število Fibonacci(nepredznačeno celo_število N)
zaviti_oklepaj
če (N je_enako 0 ali N je_enako 1)
vrni 1,
sicer
vrni Fibonacci(N odštej 1) prištej Fibonacci(N odštej 2).
zaviti_zaklepaj
instead of
unsigned int Fibonacci(unsigned int N)
{
if (N == 0 || N == 1)
return 1;
else
return Fibonacci(N - 1) + Fibonacci(N - 2);
}
-- Brane
--
Branko Čibej
Director of Subversion | WANdisco | www.wandisco.com