2014年2月22日土曜日

開発環境

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

その他参考書籍

1.

コード(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';

print reverse <STDIN>;

入出力結果(Terminal)

$ ./sample.pl
ab
bc
cd
de
ef
ef
de
cd
bc
ab
$

0 コメント:

コメントを投稿