Is there a way to tell perl to ignore that error?
It isn't an error, it's a warning. As such you can mute it in the tightest possible scope.
#!/usr/bin/env perl use strict; use warnings; my $bot = 'foo'; # This will warn my $foo = int $bot; # This will not { no warnings 'numeric'; my $bar = int $bot; }
perldoc warnings for more.
🦛
In reply to Re: Argument spamming terminal
by hippo
in thread Argument spamming terminal
by CougarXR7
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |