in reply to Re^2: use bytes without breaking perl 5.005 or 5.004? (also)
in thread use bytes without breaking perl 5.005 or 5.004?
...pretty much the same as this:BEGIN { if( eval { require bytes } ) { bytes->import(); } }
I'm a bit new to trying to import modules and pragmas outside of the regular "use" function, so I'm just trying to be sure that I understand the difference, if any.BEGIN { eval {require bytes; import bytes; 1} }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: use bytes without breaking perl 5.005 or 5.004? (same)
by tye (Sage) on Sep 29, 2003 at 03:56 UTC |