perl中heredoc使用说明
程序员文章站
2022-10-08 09:21:24
格式
print <
sub usage{
print <<eof;
usage: test.pl -c config, -f file -l lines
-c config file
-f file name
-l number of lines
eof
}
格式
print <<eof
you text go here
eof
复制代码 代码如下:
sub usage{
print <<eof;
usage: test.pl -c config, -f file -l lines
-c config file
-f file name
-l number of lines
eof
}
note: the last eof must start at the beginning of the line!!!
you can use other words instead of eof
上一篇: AI怎么绘制毛球玩偶的图形?
下一篇: perl特殊符号及默认的内部变量