You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
=SUBTITLEInformation related to the compiler that is being used
6
+
7
+
class Compiler does Systemic;
8
+
9
+
Built-in class for providing compiler related information. Usually accessed
10
+
through C`compiler` attribute of the the L«C<$*PERL>|/language/variables#Dynamic_variables» dynamic variable.
11
+
12
+
=head1Methods
13
+
14
+
=head2method build-date
15
+
16
+
method build-date()
17
+
18
+
Returns the date when it was built.
19
+
20
+
say $*PERL.compiler.build-date; #OUTPUT: «2018-05-05T21:49:43Z»
21
+
22
+
=head2method verbose-config
23
+
24
+
method verbose-config(:$say)
25
+
26
+
If C<$say> is C<True>, prints the different items included in the configuration of the compiler; if it is not, returns a C<Hash> with the same information.
27
+
28
+
say $*PERL.compiler.verbose-config; # OUTPUT: «distro::auth=https://www.opensuse.org/distro::desc=2018-05-06T09:19:17.571307+02:00» ... And the rest of the configuration
0 commit comments