perl 常见错误提示信息

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

$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";

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

 

posted @ 2023-10-15 10:18  emanlee  阅读(23)  评论(0编辑  收藏  举报