Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
[Perl 6] Fibonacci numbers in iterators.
cwchen
Nov 28th, 2017
4,773
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
Perl 6
0.26 KB
| None
|
0
0
raw
download
clone
embed
print
report
sub
fib
{
my
$a
=
0
;
my
$b
=
1
;
gather
{
loop
{
take
$a
;
my
$c
=
$a
+
$b
;
$a
=
$b
;
$b
=
$c
;
}
}
}
# (0 1 1 2 3 5 8 13 21 34 55)
fib
[
10
]
==
55
or
die
"Wrong value"
;
Advertisement
Add Comment
Please,
Sign In
to add comment
Public Pastes
⚡ QUICK $1,500 IN 2 HOURS
JavaScript | 21 sec ago | 0.16 KB
✅✅ Swapzone +$500 Promotion
JavaScript | 27 sec ago | 0.67 KB
🔥 Quick Mony Method 2025
JavaScript | 42 sec ago | 0.16 KB
✅✅ From Zero to a Millionaire PDF ✅✅
JavaScript | 58 sec ago | 0.67 KB
💰💰 HOW TO EARN $2,500 TONIGHT
JavaScript | 1 min ago | 0.16 KB
💎 TRADING EXPLOIT ✅ 💵🔥
JavaScript | 1 min ago | 0.16 KB
✅✅✅ Instant Money Method ✅✅✅
JavaScript | 1 min ago | 0.67 KB
💎0LEAKZ BTC METHOD 💵💵
JavaScript | 1 min ago | 0.16 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!