zsh-users
 help / color / mirror / code / Atom feed
From: Andrew Main <zefram@tao.co.uk>
To: mito@aparima.com
Cc: zsh-users@math.gatech.edu
Subject: Re: strange arithmetic
Date: Fri, 28 Nov 1997 19:37:05 +0000 (GMT)	[thread overview]
Message-ID: <199711281937.TAA12593@taos.demon.co.uk> (raw)
In-Reply-To: <19971128140924.07137@retriever> from "Louis-David Mitterrand" at Nov 28, 97 02:09:24 pm

Louis-David Mitterrand wrote:
>% i=0;while [[ $[++i] < 900 ]];do;echo $i;done

"<" does a string comparison.  For a numeric comparison, you want "-lt".

>% i=0;while ! [[ $[++i] = 900 ]];do;echo $i;done

"=" (or the preferred "==") also does string comparison.  You should
really use "-eq" here.

I've just noticed that this is exactly the opposite convention from Perl.
I can even see why the difference was historically inevitable.

-zefram


  reply	other threads:[~1997-11-28 20:16 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1997-11-28 19:09 Louis-David Mitterrand
1997-11-28 19:37 ` Andrew Main [this message]
1997-11-28 20:16 ` Alain Caron
1997-11-28 20:30   ` Louis-David Mitterrand
1997-11-29  2:04     ` Dan Nelson
1997-11-29 14:40       ` Louis-David Mitterrand
1997-11-29 11:44 ` Christopher Croughton

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=199711281937.TAA12593@taos.demon.co.uk \
    --to=zefram@tao.co.uk \
    --cc=mito@aparima.com \
    --cc=zsh-users@math.gatech.edu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).