Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
a=1 b=$a difference when typeset'd
- X-seq: zsh-workers 51638
- From: Sebastian Gniazdowski <sgniazdowski@xxxxxxxxx>
- To: Zsh hackers list <zsh-workers@xxxxxxx>
- Subject: a=1 b=$a difference when typeset'd
- Date: Sun, 9 Apr 2023 10:21:59 +0000
- Archived-at: <https://zsh.org/workers/51638>
- List-id: <zsh-workers.zsh.org>
HI,
I wonder if local/typeset could be improved so that the following:
local a=1 b=$a; print $b
OUT: <empty>
could be made to work like:
a=1 b=$a; print $b
OUT: 1
? Maybe it's a miss and not any serious-backed difficulty?
--
Best regards,
Sebastian Gniazdowski
Messages sorted by:
Reverse Date,
Date,
Thread,
Author