Thread Brauche Tipp für Programmstruktur
(15 answers)
Opened by Mampfgnom at 2010-09-20 11:41 2010-09-20T16:31:02 pq Original message by 'Mampfgnom': Quote ja genau. am besten mit package-namen: Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 package Modul::Name; # datei Modul/Name.pm use strict; use warnings; sub foo { ... } # im script: use Modul::Name; Modul::Name::foo(); Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wie frage ich & perlintro brian's Leitfaden für jedes Perl-Problem |