Skip to content

Instantly share code, notes, and snippets.

@JEEN
Last active August 14, 2016 06:31
Show Gist options
  • Save JEEN/c924c57fd0434b1cbda380745512ecb7 to your computer and use it in GitHub Desktop.
Save JEEN/c924c57fd0434b1cbda380745512ecb7 to your computer and use it in GitHub Desktop.
>>마음의 평화를 얻는 방법<<
use strict;
use warnings;
use Math::NumSeq::Primes;
my $seq = Math::NumSeq::Primes->new;
while(my ($i, $value) = $seq->next) {
print "$value\n";
last if $i >= 100;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment