in reply to Re: Sieve of Eratosthenes Golf?
in thread Sieve of Eratosthenes Golf?

That's a very interesting take on the Sieve. Rewritten to be golfed, it's 33 characters.
@_?($_[0],f(grep$_%$_[0],@_)):()

It needs to be called as f(2..$limit) vs. f($limit).

If the requirement is that the signature is f($limit), then it goes to 47 characters
sub x{@_?($_[0],x(grep$_%$_[0],@_)):()}x 2..pop