diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2000-07-03 10:10:07 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2000-07-03 10:10:07 +0000 |
commit | a7f0716ddbcc158463d7aaedc5f866d416deb58c (patch) | |
tree | 8111e0e31f7c2bf3e4b751455f50ecde93383a02 /Test | |
parent | 43f3a585977a34d20e8ab2ac79d39183d1d02103 (diff) | |
download | zsh-a7f0716ddbcc158463d7aaedc5f866d416deb58c.tar.gz zsh-a7f0716ddbcc158463d7aaedc5f866d416deb58c.tar.xz zsh-a7f0716ddbcc158463d7aaedc5f866d416deb58c.zip |
12138: setting arrays in math context
Diffstat (limited to 'Test')
-rw-r--r-- | Test/06arith.ztst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Test/06arith.ztst b/Test/06arith.ztst index 35d1ba494..c72bd5acb 100644 --- a/Test/06arith.ztst +++ b/Test/06arith.ztst @@ -82,3 +82,9 @@ 0:use of scalars to store integers and floats >3.5 >4 + + (( newarray[unsetvar]++ )) + (( newarray[unsetvar]++ )) + print ${(t)newarray} ${#newarray} ${newarray[1]} +0:setting array elements in math context +>array 1 2 |