1latest(3) User Contributed Perl Documentation latest(3)
2
3
4
6 latest - Use the latest Perl features
7
9 This document describes latest version 0.03
10
12 use latest;
13
15 The line
16
17 use latest;
18
19 is roughly equivalent to
20
21 use strict;
22 use warnings;
23 use $];
24
25 except that 'use $]' doesn't work.
26
27 The main use case is to
28
29 use latest;
30
31 at the top of your tests to shake out any obscure problems that might
32 result from your code being used by a program that requires the latest
33 Perl version.
34
36 latest requires no configuration files or environment variables.
37
39 None.
40
42 None reported.
43
45 Please report any bugs or feature requests to "bug-latest@rt.cpan.org",
46 or through the web interface at <http://rt.cpan.org>.
47
49 Andy Armstrong "<andy@hexten.net>"
50
52 Copyright (c) 2009, Andy Armstrong "<andy@hexten.net>".
53
54 This module is free software; you can redistribute it and/or modify it
55 under the same terms as Perl itself. See perlartistic.
56
57
58
59perl v5.32.1 2021-01-27 latest(3)