python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Is there a way to automatically use FatRats in Raku?
One of the neat things of Raku is that it automatically uses rational numbers instead of floating point numbers, when appropriate (e.g. when dividing two integers).
Unfortunately, once the denominator...
mscha
Votes: 0
Answers: 1
Is there a way to run an action on a grammar that's already been parsed?
If I do:
my $parsed_grammar = PG.parse( $some_string );
Is there any way to to do something like the pseudo code below?
$parsed_grammar.run_action( $action_class.new );
StevieD
Votes: 0
Answers: 1
Inline::Python tunneling mode
My raku Inline::Python code module unexpectedly prints output even when the rs_str method is disabled.
use Inline::Python;
role Series {
has $args;
has $!py = Inline::Python.new;
has $.po...

librasteve
Votes: 0
Answers: 1
Why are Bench module's "wallclock" seconds report so wildly off?
I'm benchmarking this code:
use Bench;
my $b = Bench.new;
say 'start';
my $i=0;
$b.timethese(100000, {
first => sub { while $i++ < 10000 { } },
second => sub { while $i++ < 10000...
StevieD
Votes: 0
Answers: 1