Thread Variable aus einer anderen sub übernehmen? (6 answers)
Opened by Gast at 2007-12-30 23:57

ptk
 2008-12-31 01:04
#104294 #104294
User since
2003-11-28
3645 Artikel
ModeratorIn
[default_avatar]
Die Deklaration muss man nicht unbedingt außerhalb machen, man kann sie auch in jedem Scope wiederholen:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
use strict;

sub foo {
our $bla = 1;
}

sub bar {
our $bla;
print $bla, "\n";
}

foo();
bar();

View full thread Variable aus einer anderen sub übernehmen?