in reply to Re: Prolegemona To A Future Scripting Language: Game Of Life In Perl 6
in thread Prolegemona To A Future Scripting Language: Game Of Life In Perl 6

# Setting default value to 0 reduces initialization costs

How does setting a default value reduce initialization costs? Zero is the default initialization value for PMCs anyways, so wouldn't setting it explicitly just create extra work?

  • Comment on Re: Re: Prolegemona To A Future Scripting Language: Game Of Life In Perl 6

Replies are listed 'Best First'.
Re: Re: Re: Prolegemona To A Future Scripting Language: Game Of Life In Perl 6
by TheDamian (Vicar) on Apr 27, 2003 at 21:40 UTC
    I meant: reduces initialization costs in comparison to the previous version, which was iteratively setting every element to zero in a pair of nested for loops.