Done !
| Server IP : 162.240.50.153 / Your IP : 216.73.216.67 Web Server : Apache System : Linux vps-880082.mktpower.cl 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64 User : wwmktp ( 1003) PHP Version : 8.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/perl5/vendor_perl/YAML/ |
Upload File : |
use strict;
use warnings;
package YAML::Tag;
our $VERSION = '0.84';
use overload '""' => sub { ${$_[0]} };
sub new {
my ($class, $self) = @_;
bless \$self, $class
}
sub short {
${$_[0]}
}
sub canonical {
${$_[0]}
}
1;
__END__
=head1 NAME
YAML::Tag - Tag URI object class for YAML
=head1 SYNOPSIS
use YAML::Tag;
=head1 DESCRIPTION
Used by YAML::Node.
=head1 AUTHOR
Ingy döt Net <ingy@cpan.org>
=head1 COPYRIGHT
Copyright (c) 2006, 2011-2012. Ingy döt Net. All rights reserved.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
See L<http://www.perl.com/perl/misc/Artistic.html>
=cut