Perl

http://yusukebe.com/archives/002715.html

初めてのPerl 第5版

初めてのPerl 第5版

#!/usr/bin/perl
use strict;
use warnings;
open $data, "<", "mydata" or die "Cannot open 'mydata': $!\n";
while (<$data>) {
    print $_;
}
close $data;
  • リファレンス

ポインタみたいなもの

$scalar_ref = \$scalar;
$array_ref = \@array;
$hash_ref = \%hash;
$func_ref = \&function;
$glob_ref = \*STDOUT;