Thread Funktioniert die "int()"-function mit rakudo-star?
(4 answers)
Opened by star at 2011-02-18 18:20 Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 #!perl6 use v6; my $a = 100; my $b = 8; my $c = int( $a / $b ); $c.say; Quote Bekomme ich die Fehlermeldung, weil "int()" noch nicht funktioniert? |