加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

Perl的技巧总结

发布时间:2020-12-16 00:03:51 所属栏目:大数据 来源:网络整理
导读:一、注释 1,单行注释 #代码 2,多行注释 =pod 代码 =cut Plain Old Documentation,简单旧文档。说白了就是在程序中插入的、不被编译器编译的文档,再说白了基本就是注释。 3,余下的全部注释 __END__ 代码 #!/usr/bin/perluse strict;use warnings;#print(

一、注释

1,单行注释

#代码

2,多行注释

=pod
代码
=cut
Plain Old Documentation,简单旧文档。说白了就是在程序中插入的、不被编译器编译的文档,再说白了基本就是注释。

3,余下的全部注释
__END__
代码
#!/usr/bin/perl
use strict;
use warnings;

#print("hello,1");
=pod
print("hello,2");
print("hello,3");
=cut
print("hello,4");
__END__
print("hello,5");
print("hello,6");
结果:D:projectperlworkspacemy>t.plhello,4

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读