bug-bash
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Question if bug: declaration of an associative array within a functi


From: Greg Wooledge
Subject: Re: Question if bug: declaration of an associative array within a function
Date: Tue, 15 Jun 2010 17:22:58 -0400
User-agent: Mutt/1.4.2.3i

On Tue, Jun 15, 2010 at 01:21:51PM +0200, Rainer Rehak wrote:
> Hey there,
> is it a bug, that the declaration of an associative array within a
> function does not survive till after the function, with primitive
> variables on the other hand that concept works well.

`declare' has the side effect of making things local to a function, if
it is used within a function.  There is currently no way to create a
global associative array while inside a function; you'd have to do it
outside the function.

Chet has said, I think, that he might consider a `global' (or similar)
keyword at some point in the future.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]