Is win 32 being worked on?

2017-07-21 Thread Mark Carter
I noticed that there is no Windows 32-bit version of rakudo, and it won't even compile on cygwin. Are there plans for fixing this?

Re: Is win 32 being worked on?

2017-07-21 Thread Todd Chester
On 07/21/2017 01:07 AM, Mark Carter wrote: I noticed that there is no Windows 32-bit version of rakudo, and it won't even compile on cygwin. Are there plans for fixing this? Hi Mark, I may be wrong, but I do believe what you want is called "Rakudo Star". You can download it from https:/

Re: Is win 32 being worked on?

2017-07-21 Thread Jan Ingvoldstad
On Fri, Jul 21, 2017 at 10:50 AM, Todd Chester wrote: > > > On 07/21/2017 01:07 AM, Mark Carter wrote: >> >> I noticed that there is no Windows 32-bit version of rakudo, and it won't >> even compile on cygwin. >> >> Are there plans for fixing this? > > > > Hi Mark, > > I may be wrong, but I do bel

Re: Is win 32 being worked on?

2017-07-21 Thread Mark Carter
On 21/07/2017 09:50, Todd Chester wrote: I may be wrong, but I do believe what you want is called "Rakudo Star". You can download it from https://rakudo.perl6.org/downloads/star/ But no recent win 32-bit.

Re: Is win 32 being worked on?

2017-07-21 Thread Todd Chester
On 07/21/2017 01:57 AM, Mark Carter wrote: On 21/07/2017 09:50, Todd Chester wrote: I may be wrong, but I do believe what you want is called "Rakudo Star". You can download it from https://rakudo.perl6.org/downloads/star/ But no recent win 32-bit. https://rakudo.perl6.org/downloads/sta

set (+) set = bag ?

2017-07-21 Thread Gabor Szabo
Looking at Sets https://docs.perl6.org/type/Set I was happy to see (-) to work as I expected, but I was surprised to see that (+) created a bag. Is that intentional? How can I get back the set. Is the only way using the unicode character ∪ ? (This is Rakudo version 2017.04.3 so I might be behind

Re: set (+) set = bag ?

2017-07-21 Thread Timo Paulssen
You want (|) to get the union of two sets as a set. https://docs.perl6.org/language/setbagmix#Set%2FBag_Operators hth - Timo

Re: set (+) set = bag ?

2017-07-21 Thread Gabor Szabo
On Fri, Jul 21, 2017 at 2:07 PM, Timo Paulssen wrote: > You want (|) to get the union of two sets as a set. > > https://docs.perl6.org/language/setbagmix#Set%2FBag_Operators > > hth > - Timo Oh thanks. Now I see there is also a link just under the "Operators" section of the Set article. I might

Re: set (+) set = bag ?

2017-07-21 Thread Darren Duncan
On 2017-07-21 5:07 AM, Timo Paulssen wrote: You want (|) to get the union of two sets as a set. https://docs.perl6.org/language/setbagmix#Set%2FBag_Operators hth - Timo Right. Every set operation except 1 (multiset sum) should result in a set, and is just a special case of the same behavi

Re: set (+) set = bag ?

2017-07-21 Thread Darren Duncan
On 2017-07-21 12:30 PM, Darren Duncan wrote: On 2017-07-21 5:07 AM, Timo Paulssen wrote: You want (|) to get the union of two sets as a set. https://docs.perl6.org/language/setbagmix#Set%2FBag_Operators hth - Timo Right. Every set operation except 1 (multiset sum) should result in a set,

Re: set (+) set = bag ?

2017-07-21 Thread Elizabeth Mattijsen
> On 21 Jul 2017, at 21:30, Darren Duncan wrote: > > On 2017-07-21 5:07 AM, Timo Paulssen wrote: >> You want (|) to get the union of two sets as a set. >> >> https://docs.perl6.org/language/setbagmix#Set%2FBag_Operators >> >> hth >> - Timo > > Right. Every set operation except 1 (multiset s

Re: set (+) set = bag ?

2017-07-21 Thread Darren Duncan
On 2017-07-21 1:33 PM, Elizabeth Mattijsen wrote: On 21 Jul 2017, at 21:30, Darren Duncan wrote: Firstly, I believe ∆ (U+2206) is the standard symbol for symmetric difference, and not circled minus as the above url currently gives. https://en.wikipedia.org/wiki/Symmetric_difference seems to a