- Another way to use the strict> pragma is to just put
+ Another way to use the strict> pragma is to put
use strict;
- in the function body. But this only works for
PL/PerlU>
- functions, since use> is not a trusted operation.
+ in the function body. But this only works in
PL/PerlU>
+ functions, since use> is not a trusted operation. In
+
PL/Perl> functions you can instead do
+BEGIN { strict->import(); }
+