Thread
Wann sind Prototypen sinnvoll
(26 answers)
Opened by
bloonix
at
2006-05-23 14:33
ptk
2006-05-24 00:20
User since
2003-11-28
3645 Artikel
ModeratorIn
Ich benutze es gerne, um die
sub { ... }
-Syntax auf
{ ... }
zu verkürzen. Also z.B.:
Code: (
dl
)
1
2
3
save_pwd {
...;
};
statt
Code: (
dl
)
1
2
3
save_pwd(sub {
...;
});
Leider ist das abschließende Semikolon weiterhin notwendig.
View full thread
Wann sind Prototypen sinnvoll