On Wed, Oct 24, 2012 at 5:35 AM, Marc Chantreux <kha...@phear.org> wrote:
>     Cannot assign to a non-container
>       in sub infix:<=> at src/gen/CORE.setting:11692
>       in block at /tmp/ZZZ:4
>
you're attempting to modify a string constant, which cannot be
modified. try something like (untested):

my $snippet = 'GATGGAACTTGACTACGTAAATT';
for $snippet {
  ...

~jerry

Reply via email to