perl学习4--调用子程序

简介: #!/usr/bin/perl -wsub sum_of_fred_and_barney {  print "Hey,you called the sum_of_fred_and_barney subroutine!\n";  $fred+$barney;}$fred=3;$barney=4;$wi...
#!/usr/bin/perl -w
sub sum_of_fred_and_barney {
  print "Hey,you called the sum_of_fred_and_barney subroutine!\n";
  $fred+$barney;
}

$fred=3;
$barney=4;
$wilma=&sum_of_fred_and_barney;
print "\$wilma is $wilma\n";
相关文章
|
6月前
|
Perl
|
6月前
|
Perl
|
5月前
|
Perl 自然语言处理 算法
Perl 教程 之 Perl 子程序(函数) 3
Perl 中的子程序(也称为函数)是用于执行特定任务的代码块。您可以在程序的多个位置调用这些子程序,以提高代码的可重用性和模块性。在 Perl 中,子程序可以接收参数,并可以返回值。 以下是 P
|
6月前
|
自然语言处理 Perl
|
6月前
|
Perl
|
6月前
|
自然语言处理 Perl
|
6月前
|
Perl
|
6月前
|
Perl
|
6月前
|
Perl
|
缓存 移动开发 Unix
Python调用外部系统命令
Python调用外部系统命令
89 0