Skip to content

Instantly share code, notes, and snippets.

View koji's full-sized avatar
🔍
I may be slow to respond.

koji koji

🔍
I may be slow to respond.
View GitHub Profile
@koji
koji / sort.pl
Created July 21, 2013 07:48
Perl入学式
#!/usr/bin/env perl
use strict;
use warnings;
my @array1; # 配列
# 3回入力する
for my $i (1..3) {
print $i."番目";
chomp($array1[$i-1] = <STDIN>);