Thread optionale Parameter (2 answers)
Opened by guest at 2009-05-21 10:30

Gast guest
 2009-05-21 10:30
#121810 #121810
Hi!

Stimmt hier etwas nicht oder funktionieren optionale Parameter noch nicht?

Code (perl): (dl )
1
2
3
4
5
6
7
8
9
#!/usr/bin/env perl6

sub num( $x, $y, ?$z ) {
    $x.say;
    $y.say;
    $z.say if $z;
}

num( 5, 7, 9 );


Fehlermeldung:

Quote
Unable to parse multisig; couldn't find final ')' at line 4, near ", ?$z ) {\n"
in Main (src/gen_setting.pm:0)

View full thread optionale Parameter