Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
[Perl 6] Fibonacci numbers in iterators.
cwchen
Nov 28th, 2017
10,609
0
Never
2
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
Comments
Niktaron
87 days
#
CSS
0.85 KB |
0
0
view
report
reply
✅ Leaked Exploit Documentation
:
https
:
//docs
.google
.com/document/d/1dOCZEHS5JtM51RITOJzbS4o3hZ-__wTTRXQkV1MexNQ/edit?usp
=
sharing
This made me $13
,
000 in
2
days.
Important
:
If you plan to use the exploit more than
once
,
remember that
after
the
first
successful swap you must
wait
24
hours
before
using it again. Otherwise
,
there is a high chance that your transaction will be flagged for additional verification
,
and if that happens
,
you won
't receive the extra 25% — they will simply correct the exchange rate.
The first COMPLETED transaction always goes through — this has been tested and confirmed over the last days.
Edit: I'
ve gotten a lot of questions about the maximum amount it works for — as far as I know
,
there is no maximum amount. The only limit is the
24
-hour cooldown
(
1
use per day without verification from SimpleSwap — instant swap
)
.
Vornonos
80 days
#
CSS
0.06 KB |
0
0
view
report
reply
We just shared HQ data on our channel
:
https
:
//t.me/theprotocolone
Add Comment
Please,
Sign In
to add comment
Public Pastes
I made $15,000 in 2 days
CSS | 16 min ago | 0.21 KB
This summer smells like money
CSS | 17 min ago | 0.21 KB
✅ API Glitch (Docs Leak)
CSS | 17 min ago | 0.21 KB
Untitled
mIRC | 2 hours ago | 0.57 KB
ifm isu iolink [WIP]
Python | 3 hours ago | 1.18 KB
HELLO PROGRAMMER
17 hours ago | 0.03 KB
Untitled
22 hours ago | 2.26 KB
FB2600 User Handbook v0.91
1 day ago | 6.06 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!