# New Ticket Created by (Mark A. Hershberger)
# Please include the string: [perl #6]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=6 >
Again, playing around with Euler, wrote myself a simple little class
Sorry for not finding the specific problem before.
> while($not_prime && $!number++) {
> $not_prime = @!primes.grep({$!number % $^a == 0});
> }
The problem with Rakudo is that it is setting @!primes to a list
containing a single item (the latest value of $!number) on each turn
throu
# New Ticket Created by (Mark A. Hershberger)
# Please include the string: [perl #61902]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=61902 >
I was working on Euler problem 2
(http://projecteuler.net/index.php?sect
# New Ticket Created by (Mark A. Hershberger)
# Please include the string: [perl #61904]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=61904 >
Again, playing around with Euler, wrote myself a simple little class
The recent perl6 brouhaha got me to try out pugs again.
After grabbing pugs from svn and running the smoke tests
(http://xrl.us/bdipe), I noticed some ext/File-Util/t/03.dirs.t was
failing and looked like it would be a relatively easy fix.
Diff attached.
I worked from the File::Util docs on CPA