in reply to Requiring use strict

The only real issue with making strict mandatory (and having 'use lenient' instead?) is that it'll break current programs, which is not something to be done lightly. I suppose 'strict' could be the default for Perl 6 (at least when not running in Perl 5 compat. mode), but I don't believe that's being done.

Replies are listed 'Best First'.
Re^2: Requiring use strict (Perl6)
by tye (Sage) on Jul 15, 2003 at 22:48 UTC

    use strict; will be the default for Perl 6 modules but not for Perl 6 scripts.

                    - tye