We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Report the current perl version set by plenv.
Design idea: use Unicode superscripts and subscripts.
$ perl -C -E 'say "perl 5.10.1: \x{2075}10\x{2081}"' perl 5.10.1: ⁵10₁
The text was updated successfully, but these errors were encountered:
sub pack_perl5_version { my $v = shift; # Replace "5." with '⁵' substr($v, 0, 2, "\N{U+2075}"); # Replace minor with subscript digit substr($v, -2, 2, chr(0x2080+substr($v, -1))); $v }
Sorry, something went wrong.
No branches or pull requests
Report the current perl version set by plenv.
Design idea: use Unicode superscripts and subscripts.
The text was updated successfully, but these errors were encountered: