Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
strange arithmetic
- X-seq: zsh-users 1159
- From: Louis-David Mitterrand <mito@xxxxxxxxxxx>
- To: zsh-users@xxxxxxxxxxxxxxx
- Subject: strange arithmetic
- Date: Fri, 28 Nov 1997 14:09:24 -0500
- Reply-to: mito@xxxxxxxxxxx
(using 3.0.5)
% i=0;while [[ $[++i] < 900 ]];do;echo $i;done
% 1
% 2
[...]
% 90
90 ?? I asked for 900 and it stops at 90. On the other hand the
following:
% i=0;while ! [[ $[++i] = 900 ]];do;echo $i;done
% 1
% 2
[...]
% 899
Is this normal?
--
Louis-David Mitterrand
http://www.aparima.com
mito@xxxxxxxxxxx
Messages sorted by:
Reverse Date,
Date,
Thread,
Author