Search:
Help/Guide
About Trac
Preferences
Wiki
Timeline
Roadmap
Browse Source
View Tickets
Search
Context Navigation
←
Previous Change
Wiki History
Next Change
→
Changes between
Version 20
and
Version 21
of
Perl
View differences
inline
side by side
Show
lines around each change
Show the changes in full context
Ignore:
Blank lines
Case changes
White space changes
Timestamp:
11/07/06 10:49:25 (
18 years
ago)
Author:
atzm
Comment:
--
Legend:
Unmodified
Added
Removed
Modified
Perl
v20
v21
485
485
110, 113, 116, 119, 122, 125, 128, 131, 134, 137, 140, 143, 146, 149
486
486
}}}
487
488
== データの分離 ==
489
=== 特殊ファイルハンドル DATA ===
490
* {{{__DATA__}}},{{{__END__}}} 以下は DATA ファイルハンドルで読み出せる.
491
{{{
492
#!perl
493
494
print while(<DATA>);
495
496
__DATA__
497
hoge
498
hage
499
hige
500
}}}