0
点赞
收藏
分享

微信扫一扫

perl 常见错误提示信息

栖桐 2023-11-08 阅读 31

=========================

$animal = "camel"

syntax error at ReadCount.V3.pl line 15, near "my "
Global symbol "%RnaEdits" requires explicit package name at ReadCount.V3.pl line 15.
Execution of ReadCount.V3.pl aborted due to compilation errors.
--------------------------------------

To declare your variable, change this line:

$animal = "camell";

To:

my $animal = "camell";

=========================

 



举报

相关推荐

0 条评论