io@COMP:C>cat sw.pl use strict; 0 use warnings; io@COMP:C>perl sw.pl "use" not allowed in expression at sw.pl line 5, at end of line syntax error at sw.pl line 5, near "use warnings" Execution of sw.pl aborted due to compilation errors. io@COMP:C>cat ws.pl use warnings; 0 use strict; io@COMP:C>perl ws.pl "use" not allowed in expression at ws.pl line 5, at end of line syntax error at ws.pl line 5, near "use strict" Execution of ws.pl aborted due to compilation errors.