GTK for Windows

2019-11-28 Thread ToddAndMargo via perl6-users
Hi All, Do we have something like use GTK::Simple; use GTK::Simple::App; for Windows? Many thanks, -T

Re: words and separators question

2019-11-28 Thread ToddAndMargo via perl6-users
On 2019-11-28 06:47, The Sidhekin wrote: On Thu, Nov 28, 2019 at 2:53 PM ToddAndMargo via perl6-users mailto:perl6-us...@perl.org>> wrote: Is there a way I can tell words that I want "fg hi" to be considered one word?  A way to make the separator two or more spaces?   I don't

Re: qx and echo question

2019-11-28 Thread ToddAndMargo via perl6-users
On 2019-11-28 12:57, yary wrote: One of the clues is the exitcode=1, there is an error coming back. I think there are two issues which I didn't realize until now 1. DOS command "dir" is a cmd.exe built-in, not its own executable 2. Raku (perl6) "run" takes a list of arguments, not a space-separa

Re: words and separators question

2019-11-28 Thread ToddAndMargo via perl6-users
On 2019-11-28 05:51, ToddAndMargo via perl6-users wrote: Hi All, I have a situation where I can see two different strings:     "xxx     zzz"     "avcde    fg hi  jklmx" "fg hi" only has one space in the middle. All the words have multiple spaces between them. Is there a way

Re: qx and echo question

2019-11-28 Thread ToddAndMargo via perl6-users
On 2019-11-28 09:39, WFB wrote: Hi T, I have very little knowledge about the interna, but 'dir' is a raku as well as Shell command. THat might cause a problem here. Try, "shell" instead of "run", that works for me at least: perl6 -e "shell 'dir'" Greetings Hi WFB, I am only using "dir" as

Rakudo compiler, Release #132 (2019.11)

2019-11-28 Thread Aleks-Daniel Jakimenko-Aleksejev
On behalf of the Rakudo development team, I’m very happy to announce the November 2019 release of Rakudo #132. Rakudo is an implementation of Raku on the Moar Virtual Machine[^1]. This release implements 6.c and 6.d versions of the Raku specification. 6.c version of the language is available if yo

Re: qx and echo question

2019-11-28 Thread yary
One of the clues is the exitcode=1, there is an error coming back. I think there are two issues which I didn't realize until now 1. DOS command "dir" is a cmd.exe built-in, not its own executable 2. Raku (perl6) "run" takes a list of arguments, not a space-separated command-line Let's try these (

Re: words and separators question

2019-11-28 Thread The Sidhekin
On Thu, Nov 28, 2019 at 2:53 PM ToddAndMargo via perl6-users < perl6-us...@perl.org> wrote: > Is there a way I can tell words that I want "fg hi" to > be considered one word? A way to make the separator > two or more spaces? > I don't think you can pass a separator to words. But you can spec

words and separators question

2019-11-28 Thread ToddAndMargo via perl6-users
Hi All, I have a situation where I can see two different strings: "xxx zzz" "avcdefg hi jklmx" "fg hi" only has one space in the middle. All the words have multiple spaces between them. Is there a way I can tell words that I want "fg hi" to be considered one w