Thread Aufruf einer sub und Parameter
(16 answers)
Opened by bianca at 2018-03-04 14:39
Dann steh ich grad am Schlauch.
Dieses Beispiel sagt "bar" Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 my $foo = 'bar'; sub process_challenge { my $challenge = shift; say $foo; } package Foobar; sub accept_challenge { my $a = shift; $a->(); } accept_challenge(\&main::process_challenge); 1 + 1 = 10
|