in reply to Re^4: Experimental push on scalar now forbidden
in thread Experimental push on scalar now forbidden

I'm on many tangents at the moment so I don't have the time to forge through to find it, but often, you can find discussion links within the perlexperiment documents for each version, as well as perldelta docs.

I'll have some time later, so state whether you've found something or not. If not, I'll dig up some conversations on the topic later when I can and post back.

I typically keep up with these things, but a long time has passed and I've forgotten. All this despite the fact I rarely ever use features beyond perl 5.8.9, unless I'm literally testing the experiments to learn (postderef was one I toyed with amongst many), or things I use for quick one-off test scripts while testing my distributions (say() out of 5.10 for example).

Replies are listed 'Best First'.
Re^6: Experimental push on scalar now forbidden
by tobyink (Canon) on May 21, 2017 at 21:51 UTC

    state (added in Perl 5.10) can be really nice. Reference aliasing (added in Perl 5.22) is also awesome, but seems too new to rely on. In quick mock-ups, I often find myself using package Foo::Bar { ... } syntax (added in Perl 5.14) but that's trivial to replace with { package Foo::Bar; ... } before distributing the code.

Re^6: Experimental push on scalar now forbidden
by KurtZ (Friar) on May 21, 2017 at 21:05 UTC
    Thanks and no worries! :)

    My question wasn't directed especially at you but at the general audience here.

    And haukex already provided some good pointers.