I'm still a little new to Perl on a win32 system, and I was
wondering which of these shebang lines is the correct one
to use in my code? If my code was to ever run on another
type of O.S. I'd probably go with B) but since I'm only
using Windoze 2000, I want to lean more towards C)
Thanks!
# A)
#!perl
# B)
#!/usr/bin/perl
use strict;
use warnings;
use win32;
# C)
#!perl
use strict;
use warnings;
use win32;
# D)
#!/usr/bin/perl-w
use strict;