http://qs321.pair.com?node_id=1107809


in reply to Mojo::UserAgent Can't locate object method "say"

Unfortunately say isn't enabled without a use feature or version line:

use feature 'say';

Along with your other use lines. This is automatically enabled if you specify a minimum Perl version of v5.10 or above as well:

use 5.010;