moarvm Questions
3
Solved
I am writing a library that uses NativeCall, it would be very convenient for me to be able to return a Raku Hash from an exported function. How can I do this?
For example, in Ruby, if I wanted to r...
1
Solved
That is, variables like $*scalar, @*array and %*hash.
I'm asking this question mainly because I want to have an idea of how much of a burden they are on the overall performance of the grammar/regex...
1
Solved
I wonder if is possible to have only precompiled modules or some sort of MoarVM bytecode.
The idea is to protect the source code at some grade - at least i don't want to be in plain text
2
Solved
1
Solved
I wonder how I can debug the Moarvm bytecode. Is there a document that describes for instance
howto convert raku to moarvm and howto dump the generated bytecode. If i try to i.e. run:
rakudo-m --ta...
1
raku -version
This is Rakudo version 2020.01 built on MoarVM version 2020.01.1
implementing Perl 6.d.
Currently it looks like I can't start any Raku Perl6 program
with a runtime lower than about ...
Mollescent asked 3/2, 2020 at 9:26
1
Solved
I'm rewriting my P5 socket server in P6 using IO::Socket::Async, but the data received got truncated 1 character at the end and that 1 character is received on the next connection. Someone from Per...
2
Solved
I have to run data analysis on about 2 million lines of data and each line about 250 bytes long. So total about 500 megabytes of data. I am running latest Rakudo on Virtualbox Linux with 4G memory....
2
I am playing with perl6 version which built on MoarVM on windows. I created some perl6 file and want to compile it to exe. I tried the following:
perl6 --target=MAST r.pl>r
Now I want to comp...
5
Solved
Running under moar (2016.10)
Consider this code that constructs a set and tests for membership:
my $num_set = set( < 1 2 3 4 > );
say "set: ", $num_set.perl;
say "4 is in set: ", 4 ∈ $num...
1
© 2022 - 2024 — McMap. All rights reserved.