我刚刚开始学习 Perl。我查看了开始的 perl 页面并开始工作。
它说:
单引号和双引号的区别在于,单引号表示它们的内容应该按字面意思理解,而双引号表示应该解释它们的内容
当我运行这个程序时:
#!/usr/local/bin/perl
print "This string \n shows up on two lines.";
print 'This string \n shows up on only one.';
它输出:
这个字符串 显示在两条线上。 这个字符串 只出现在一个上。
我在某个地方错了吗?perl 的版本如下:
perl -v
This is perl, v5.8.5 built for aix
Copyright 1987-2004, Larry Wall
Perl may be copied only under the terms of either the Artistic License or the
GNU General Public License, which may be found in the Perl 5 source kit.
Complete documentation for Perl, including FAQ lists, should be found on
this system using `man perl' or `perldoc perl'. If you have access to the
Internet, point your browser at http://www.perl.com/, the Perl Home Page.