in reply to Too late for -Mstrict
or at the command line#!/usr/bin/perl -w use strict; my $A="a";$A++for(0..285074);print$A;
Or in both cases withouth the strict pragma in use you can drop the my declaration on $Aperl -Mstrict -le 'my $A="a";$A++for(0..285074);print$A;'
|
|---|