Thread Funktioniert die "int()"-function mit rakudo-star? (4 answers)
Opened by star at 2011-02-18 18:20

Gast star
 2011-02-18 18:20
#145757 #145757
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
Could not find sub &int
in main program body at line 7:./perl.p


Bekomme ich die Fehlermeldung, weil "int()" noch nicht funktioniert?

View full thread Funktioniert die "int()"-function mit rakudo-star?