On Fri, 15 Sep 2017 11:47:10 -0700, c...@zoffix.com wrote:
> On Tue, 05 Sep 2017 03:19:45 -0700, zef...@fysh.org wrote:
> > > (3, Nil)
> > (3 Nil)
> > > List.new(3, Nil)
> > (3 (Any))
> >
> > It is possible (as it should be) to put Nil into a List, if it's
> > constructed using the comma operator.
On Tue, 05 Sep 2017 03:19:45 -0700, zef...@fysh.org wrote:
> > (3, Nil)
> (3 Nil)
> > List.new(3, Nil)
> (3 (Any))
>
> It is possible (as it should be) to put Nil into a List, if it's
> constructed using the comma operator. But constructing it via the
> List.new() constructor replaces the Nil wit
On Tue, 05 Sep 2017 03:19:45 -0700, zef...@fysh.org wrote:
> > (3, Nil)
> (3 Nil)
> > List.new(3, Nil)
> (3 (Any))
>
> It is possible (as it should be) to put Nil into a List, if it's
> constructed using the comma operator. But constructing it via the
> List.new() constructor replaces the Nil wit
# New Ticket Created by Zefram
# Please include the string: [perl #132032]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=132032 >
> (3, Nil)
(3 Nil)
> List.new(3, Nil)
(3 (Any))
It is possible (as it should be) to put Nil in