in reply to Re: Header file management
in thread Header file management

That was just the thing I needed, thank you!

The required version thing threw me a bit. As it turned out, I needed to guess where to stick the zero with no if

no if 0 $] >= 5.018, warnings => "experimental::smartmatch";

I looked at the source for Syntax::Collector. Rewriting that code not to require a version might be a useful exercise, but not for me today.

Thanks Again!

-SM

Replies are listed 'Best First'.
Re^3: Header file management
by haukex (Archbishop) on Apr 30, 2018 at 21:12 UTC
    no if 0 $] >= 5.018, warnings => "experimental::smartmatch";

    As you know, smart matching is experimental, which means it may change significantly or even go away in future versions of Perl. In the long run, you may want to avoid it until it becomes more clear which direction it's heading in.