R.A. Epigonos et al.

リファレンスでどうしようもなくなったらDumperを使え(test_reference.pl)

#!/usr/bin/perl -w
#test_reference.pl
use strict;
my @LoL = ( ["00", "01"], ["10", "11", "12"], ["20"] );
use Data::Dumper; #for using Dumper()
print Dumper(@LoL);
exit;
D:\test>perl -w test_reference.pl
$VAR1 = [
          '00',
          '01'
        ];
$VAR2 = [
          '10',
          '11',
          '12'
        ];
$VAR3 = [
          '20'
        ];

ソーシャルブックマーク

  1. はてなブックマーク
  2. Google Bookmarks
  3. del.icio.us

ChangeLog

  1. Posted: 2007-10-01T16:23:40+09:00
  2. Modified: 2007-10-01T04:20:03+09:00
  3. Generated: 2023-08-27T23:09:16+09:00