Perl的技巧总结

前端之家收集整理的这篇文章主要介绍了Perl的技巧总结前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

一、注释

1,单行注释

#代码

2,多行注释

@H_301_17@
=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:\project\perl\workspace\my>t.plhello,4

猜你在找的Perl相关文章