⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ch03.011_best

📁 Perl Best Practices the source code
💻 011_BEST
字号:
################################################################################   Code fragment (Recommended) from Chapter 3 of "Perl Best Practices"    ####     Copyright (c) O'Reilly & Associates, 2005. All Rights Reserved.      ####  See: http://www.oreilly.com/pub/a/oreilly/ask_tim/2001/codepolicy.html  ################################################################################# Standard modules...use strict;use warnings;use IO::Prompt;use Carp;use English qw( -no_match_vars );use Data::Alias;use Readonly;Readonly my $MONTH_NAMES => {    Jan => 0,    Feb => 1,    Mar => 2,    Apr => 3,    May => 4,    Jun => 5,    Jul => 6,    Aug => 7,    Sep => 8,    Oct => 9,    Nov => 10,  Wayne => 11,};my @catalog    = qw( TIMTOWDI );my %title_of   = ( TIMTOWDI => 'The Way of Doing It' );my %ISBN_for   = ( TIMTOWDI => 666 );my @sales_from = ( 100..111 ); # and later... while (my $month = prompt -menu => $MONTH_NAMES) {    for my $book ( @catalog ) {        print "$ISBN_for{$book}  $title_of{$book}: $sales_from[$month]\n";    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -