2012年8月8日水曜日

開発環境

『初めてのPerl 第6版』(Randal L. Schwartz, Tom Phoenix, brian d foy 共著、近藤 嘉雪 訳、オライリー・ジャパン、2012年、ISBN978-4-87311-567-2) の1章(Perl入門)、1.5(練習問題)3を解いてみる。

3.

コード(TextWrangler)

sample.pl

#!/usr/bin/env perl
use strict;
use warnings;

my @lines = `perldoc -u -f atan2`;
for(@lines){
  s/\w<([^>]+)>/\U$1/g;
  print;
}

入出力結果(Terminal)

$ ./sample.pl
=over 8

=item atan2 Y,X
ATAN2 ARCTANGENT TAN TANGENT

Returns the arctangent of Y/X in the range -PI to PI.

For the tangent operation, you may use the MATH::TRIG::TAN
function, or use the familiar relation:

    sub tan { sin($_[0]) / cos($_[0])  }

The return value for ATAN2(0,0) is implementation-defined; consult
your atan2(3) manpage for more information.

=back
$

0 コメント:

コメントを投稿