rakudo-star Questions

1

Solved

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...
Dag asked 8/3, 2022 at 9:5

2

Solved

I have the following project $ tree . ├── lib │   └── MyModule.raku └── main.raku $ cat lib/MyModule.raku use v6; unit module MyModule; sub hello { say 'hello' } $ cat lib/main.raku use v6; use ...
Walczak asked 5/3, 2020 at 1:59

2

Solved

I am eager to learn Raku(Perl 6) and its syntax. I already have Perl 5 installed in my Ubuntu machine. vinod@ubuntu-s-1vcpu-1gb-nyc1-01:~$ perl -v This is perl 5, version 26, subversion 1 (v5.26...
Escadrille asked 22/10, 2019 at 7:0

3

I am trying to understand perl6 and its changes than perl5. I come to know that perl 6 is compiled languages but I am not getting how? It is not generating any intermediate code (directly executabl...
Blackford asked 14/8, 2016 at 5:47

1

Solved

When I try to run a simple perl6 script on MSYS2-64 (bash.exe) on Windows 7 it says: Could not open my-perl6-script.pl. Failed to stat file: no such file or directory The same script runs perfec...
Oxa asked 15/7, 2019 at 12:1

2

Solved

#!perl6 use v6; my $message = "\nHello!\n\nSleep\nTest\n\n"; my @a = $message.split( '' ); for @a { sleep 0.3; .print; } Does perl6 enable "autoflush" by default. With perl5 without enablin...
Bard asked 20/2, 2011 at 8:54

3

Solved

I am trying to install Rakudo Star 2018.04 on a Raspberry Pi 3. I do: sudo perl Configure.pl --gen-moar --gen-nqp --prefix ~/rakudo and it completes successfully. And then I try: sudo make-in...
Griggs asked 31/7, 2018 at 3:1

2

Solved

I tried this, but it didn't work: $*OUT.autoflush( 0 );
Watusi asked 20/2, 2011 at 14:32

1

Solved

Today I installed Rakudo Star 2012.07 and tryed to write a simple Perl 6 script: #!/usr/bin/env perl6 use v6; use LWP::Simple; my $html = LWP::Simple.get('http://perl6.org'); say $html; It doe...
Upchurch asked 27/8, 2012 at 12:26

1

Solved

What's the purpose of use statement below which I stumbled across in some Perl 6 module? use CGI:from<perl5>; ... ... The rest of the code is just mundane usage of the Perl 5 CGI module, a...
Rollerskate asked 12/2, 2012 at 7:53

1

Solved

Is there something I can't do without the '@'-sigil when working with user-defined variables? #!perl6 use v6; my $list = <a b c d e f>; my @list = <a b c d e f>; $list.list.perl.say;...
Architectonics asked 18/2, 2011 at 8:4

1

I've been trying to run some sockets code in Rakudo Perl (freshly built from the repository at http://github.com/rakudo/rakudo) but the implementation of IO::Socket::INET appears to be incomplete. ...
Fahy asked 3/8, 2010 at 15:58
1

© 2022 - 2024 — McMap. All rights reserved.