Thread Umgang mit projektweiten Konstanten (4 answers)
Opened by gkaiser at 2008-01-29 15:30

Struppi
 2008-01-29 19:03
#105330 #105330
User since
2006-02-17
628 Artikel
BenutzerIn
[Homepage]
user image
Ich mach das momentan so:
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
package My::Constants;

use base 'Exporter';
use constant TRUE       => 1;
use constant FALSE      => 0;
use constant NL      => "\n";
use constant NULL   => "\0";

our @EXPORT = qw(TRUE FALSE NL NULL);
1;

View full thread Umgang mit projektweiten Konstanten