1 2 3 4 5 6 7 8 9 10 11 12
use feature 'say'; sub p_foo () { my $n = 12 * ( $_[0] // 1 ); return $n; } sub foo { my $n = 12 * ( $_[0] // 1 ); return $n; } say "p_foo: ", p_foo + 3; say "foo: ", foo + 3;
2015-01-22T11:40:26 biancaCode (perl): (dl )sub p_foo () { #...
Warum kommt beim ersten 15 raus?
2015-01-22T14:21:58 reneeEs wird also zu say 'p_foo:', p_foo() + 3;