develooper Front page | perl.perl5.porters | Postings from December 2011

Re: what's "use VERSION" all about?

Thread Previous | Thread Next
From:
jvromans
Date:
December 5, 2011 02:19
Subject:
Re: what's "use VERSION" all about?
Message ID:
20188.39606.214988.603563@phoenix.squirrel.nl
[Quoting Johan Vromans, on December 5 2011, 11:16, in "Re: what's "use VERS"]
>   use version ':5.16';		# includes 'bla'
>   use version ':5.12';		# does not include 'bla'

Wrong syntax but you should get the message :)

  use feature 'bla';
  use version v5.16;		# includes 'bla'
  use version v5.12;		# does not include 'bla'
  # is 'bla' enabled or not?

-- Johan

Thread Previous | Thread Next


nntp.perl.org: Perl Programming lists via nntp and http.
Comments to Ask Bjørn Hansen at ask@perl.org | Group listing | About