Last active
August 14, 2016 06:31
-
-
Save JEEN/c924c57fd0434b1cbda380745512ecb7 to your computer and use it in GitHub Desktop.
>>마음의 평화를 얻는 방법<<
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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