标签:hello 最好 comment com 基本 strong var 未使用 注释
#!
。perl的后缀名一般为".plx",运行时使用perl NAME.plx
即可例如,1.plx内容如下:
#!/usr/bin/perl
print "hello world\n"
执行该脚本:
shell> perl 1.plx
# comment
print "hello world\n" # comment
perl脚本中,除了最后一行,每行都需要以";"结尾,除非是注释行
$var=12;
print $var;
use 5.10
会被perl认为是5.100版use 5.010;
use utf8
语句use utf8;
use strict
语句该功能让perl编译器以严格的态度对待perl程序,如果定义了变量却未使用过,或者引用了未定义过的变量,都会编译错误。
use strict;
使用了版本号(如use 5.0.14;
)时,会自带use strict;
。
use warnings;
或者perl -w
,或者在perl脚本中:
#!/usr/bin/perl -w
$var=`date +"%F %T"`
print $var
例如,调用print函数:
print("hello world\n");
print "hello world\n";
标签:hello 最好 comment com 基本 strong var 未使用 注释
原文地址:https://www.cnblogs.com/f-ck-need-u/p/9512028.html