新手求助

新手求助

新手求助
我装了PERL,在编译的时候出现
C:\usr\bin>perl 1.pl
Unrecognized character \xA1 at 1.pl line 2.
我的源程序是
#!c:\perl\bin\perl -w
   use strict;
   {
   print "hello perl world, this is my first!\n";
   }
请问有什么问题吗??


我用的的window 2000 是不是少装了什么东西啊[CCB]10[/CCB]
好象挺正常的,仔细检查一.
好象挺正常的,仔细检查一下吧
是不是有全角的空格阿.
确实,肯定因为代码是从其.
确实,肯定因为代码是从其他地方复制过来的,带了看不见的空格,
自己把代码写一遍就没问题了
[quote]回复给 smilelance.
[quote]回复给 smilelance : 确实,肯定因为代码是从其....[/quote]
同意,把下面这个贴进去就没有问题了。
#! c:\perl\bin\perl -w
use strict;
{
print "hello perl world, this is my first!\n";
}
BTW,本人喜欢用#! /usr/b.
BTW,本人喜欢用#! /usr/bin/perl开头。