CARVIEW |
Select Language
HTTP/2 200
date: Sun, 12 Oct 2025 05:04:58 GMT
content-type: text/html; charset=UTF-8
server: cloudflare
x-frame-options: DENY
x-content-type-options: nosniff
x-xss-protection: 1;mode=block
vary: accept-encoding
cf-cache-status: DYNAMIC
content-encoding: gzip
set-cookie: _csrf-frontend=4e69c7c324557dcb17c4d332ae58de34f31d7b99e4f7385520bee9050f3263a0a%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22owFgst6CMVoapihVGbAnjOoCm6Bnf9pX%22%3B%7D; HttpOnly; Path=/
cf-ray: 98d40f3c2a1bc1ae-BLR
[Perl 6] Stateful subroutine demo. - Pastebin.com
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- sub fib(Int $n where $n >= 0) {
- state %cache = 0 => 0, 1 => 1;
- if %cache{$n}:exists {
- return %cache{$n};
- }
- my $out = fib($n - 1) + fib($n - 2);
- %cache{$n} = $out;
- $out;
- }
- fib(10) == 55 or die "Wrong number";
Advertisement
Add Comment
Please, Sign In to add comment
-
⭐⭐⭐Make $15OO in 2O minutesV E⭐⭐
Java | 51 sec ago | 0.10 KB
-
⭐⭐⭐MAKE $900 INSTANTLY⭐⭐
Java | 1 min ago | 0.10 KB
-
⭐⭐⭐MAKE $500 IN 15 MIN⭐⭐
Java | 1 min ago | 0.10 KB
-
⭐⭐⭐Instant Profit Method⭐⭐
Java | 1 min ago | 0.10 KB
-
✅⭐ Make huge profits on trading ⭐⭐ 9
JavaScript | 1 min ago | 0.25 KB
-
⭐⭐⭐Make $1500 in 20 minutes⭐⭐
Java | 1 min ago | 0.10 KB
-
⭐✅ Marketplace Glitch ✅ Working ✅ NEVER SEEN...
JavaScript | 1 min ago | 0.25 KB
-
⭐✅ Exploit 2500$ in 15 Minutes⭐⭐⭐ 8
JavaScript | 1 min ago | 0.25 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