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)
srand in Raku, is it expected?
I am trying to run a code containing srand function:
srand(1);
my @x = (1..1000).roll(100);
my @y = (200..7000).roll(100);
say sum(@x);
say sum(@y);
say $*KERNEL
From the docs its pretty clear that s...

Suman Khanal
Votes: 0
Answers: 2
Getting error "Could not load oplib `nqp_dyncall_ops'" + traceback when executing raku one liner
I have a rakudo instance that will do nothing other than respond with "Could not load oplib 'nqp_dyncall_ops'".
Using the REPL:
perl6
Could not load oplib 'nqp_dyncall_ops
exit
Unable to...
davidc
Votes: 0
Answers: 0
RAKUDO_RAKUAST=1 raku --target=ast is not yet available
It has been almost a year since I saw Jonathan Worthington presenting the new RakuAST in the YouTube video A Raku API to Raku programs the journey so far from TRC 2021. In the video, he showed that w...
WhiteMist
Votes: 0
Answers: 1
Making exported functions in submodules accessible in global namespace in Raku
I created a minimal working module called new. The folder structure, link here is as follows:
new
│ .gitignore
│ Changes
│ dist.ini
│ LICENSE
│ META6.json
│ README.md
│
├───lib
│ │ new...

Suman Khanal
Votes: 0
Answers: 2