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 27
and
Version 28
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/15/06 20:36:35 (
18 years
ago)
Author:
atzm
Comment:
--
Legend:
Unmodified
Added
Removed
Modified
Perl
v27
v28
538
538
hige
539
539
}}}
540
541
== スクリプトを直接実行した時だけ呼ぶコード ==
542
* とどのつまりは Python で言うところの {{{if __name__ == "__main__":...}}} .
543
{{{
544
#!perl
545
if (__FILE__ eq $0) {
546
...
547
}
548
}}}