Snippets

sironekotoro アルファベットを利用した26進数

Created by sironekotoro
use v5.10;

# 横に長いExcelシートとかを使うときに便利かもしれない

my $twenty_six = [ 0, 'A' .. 'ZZZ' ];
print $twenty_six->[27];

for my $i ( @{$twenty_six} ) {
    say $i;
}

Comments (0)

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.