2014年3月13日木曜日

開発環境

初めてのPerl 第6版 (Randal L. Schwartz (著)、brian d foy (著)、Tom Phoenix (著)、近藤 嘉雪 (翻訳)、オライリージャパン)、6章(ハッシュ)の6.6(練習問題)3.を解いてみる。

その他参考書籍

6.6(練習問題)3.

コード(BBEdit, Emacs)

sample.pl

#!/usr/bin/env perl
# use diagnostics;
use strict;
use warnings;
use 5.016;
use utf8;
binmode STDIN, ':utf8';
binmode STDOUT, ':utf8';
binmode STDERR, ':utf8';

$ENV{DEBUG} = 1;

my $cols = 0;

for (keys %ENV) {
    my $l = length $_;
    if ($l > $cols) {
        $cols = $l;
    }
}

for (sort keys %ENV) {
    printf "%-${cols}s: %s\n", $_, $ENV{$_};
}

入出力結果(Terminal)

$ ./sample.pl
COLUMNS                   : 80
DEBUG                     : 1
…
$

0 コメント:

コメントを投稿