码迷,mamicode.com
首页 > 其他好文 > 详细

[Perl] Smart::Comments

时间:2015-03-02 18:16:38      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:

调试Perl程序时,使用Smart::Comment模块,追踪代码的变量值,非常方便有效。

代码示例:

1 #!/usr/bin/perl
2 
3 use Smart::Comments;
4 # no Smart::Comments;
5 my $var=@ARGV[0]; 6 7 ### $var;

执行代码:

./smartcomment.pl test

执行结果:

### $var: ‘test‘

使用“no Smart::Comments” 代替 “use Smart::Comments”, 可以关闭注释信息。

 

命令行打开Smart::Comments模块的方法:

perl -MSmart::Comments smartcomment.pl test

 

[Perl] Smart::Comments

标签:

原文地址:http://www.cnblogs.com/qixinsoc365/p/4309075.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!