zsh-users
 help / color / mirror / code / Atom feed
From: Eric Cook <llua@gmx.com>
To: zsh-users@zsh.org
Subject: Could someone clarify how math functions work?
Date: Thu, 18 Dec 2014 22:45:20 -0500	[thread overview]
Message-ID: <54939F50.50102@gmx.com> (raw)

In the `functions -M' section of zshbuiltins there is the sentence:
"The  result  of the last arithmetical expression evaluated inside the
shell function (even if it is a form that normally only returns a
status) gives the result of the mathematical function."

but:
zsh -c 'add() ( for arg; do (( n += arg )); done; print  n: $n );
functions -M add; print results: $(( add(1,2,3) ))'

Outputs:
n: 6
results: 3

where as:
zsh -c 'add() { local arg n; for arg; do (( n += arg )); done; print n:
$n }; functions -M add; print results: $(( add(1,2,3) ))'

Outputs:
n: 6
results: 6

Is that expected behavior? If so, could you explain why?


             reply	other threads:[~2014-12-19  3:58 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-12-19  3:45 Eric Cook [this message]
2014-12-19  5:16 ` Kurtis Rader
2014-12-19  5:34 ` Bart Schaefer
2014-12-19  5:48   ` Kurtis Rader
2014-12-19  5:51     ` Kurtis Rader
2014-12-19  6:05     ` Bart Schaefer
2014-12-19 11:15   ` Eric Cook
2014-12-19  9:35 ` Peter Stephenson

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=54939F50.50102@gmx.com \
    --to=llua@gmx.com \
    --cc=zsh-users@zsh.org \
    /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).