i don't understand exactly how the scoring works; i am using perl command line switches, but it seems like the initial #! line is counted as part of the code.
a) why is the code size count the #! line and b) is there any easy way to use command line switches without a #! line if it is counted
I ve got a question: i am from Germany and would linke to change backlinks. Maybe u backlink me and then i will set a bcklink on http://www.martin-hamann.de & http://www.cops-vs-polizei.de & http://www.ich-will-zur-polizei.de. I wish me a lot of linkpartner all over the world. By the Way: I am a candidat of the greencard-lottery-divison 2008. Lovely Greeting from Germany (Kiel = former Reichskriegshafen *Smile* ) Martin Hamann (Landespolizeischule-der Enthüllungsbericht)
a) why is the code size count the #! line and
b) is there any easy way to use command line switches without a #! line if it is counted
for example,
#!perl -pl
MY CODE
gives a different size than
#!/usr/bin/perl -pl
MY CODE
and the standard perl golf entry
-pl MY CODE
doesn't even run properly.