CARVIEW |
Select Language
HTTP/2 200
date: Sun, 12 Oct 2025 13:30:21 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=c7ccb2bdc4c1ab345e0875c58cbd49d5115c3538441bd6ef59952d9dab0fd60ba%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22iHSqY3saP6ZbPrwqA0FTUrVjTupspwRs%22%3B%7D; HttpOnly; Path=/
cf-ray: 98d6f3882e42f313-BLR
vala - Pastebin.com
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- void factorial(uint32 n, out double result)
- {
- if ( n <= 1) {
- result = 1.0;
- } else {
- double partial_result;
- uint32 next_n = n - 1;
- factorial(next_n, out partial_result);
- result = n * partial_result;
- }
- }
- void main()
- {
- double result;
- uint32 n = 5;
- factorial(n, out result);
- stdout.printf("%g\n", result);
- }
Advertisement
Add Comment
Please, Sign In to add comment
-
π Swapzone +37% glitch
JavaScript | 2 sec ago | 0.24 KB
-
β‘ Crypto Swap Glitch β
Working β‘
JavaScript | 11 sec ago | 0.24 KB
-
π Instant BTC Profit Method β
Working J
JavaScript | 17 sec ago | 0.25 KB
-
π‘ Instant BTC Profit Method β
Working
JavaScript | 26 sec ago | 0.24 KB
-
π MAKE $2500 IN 15 MIN β
Working
JavaScript | 36 sec ago | 0.24 KB
-
β
Make $2500 in 20 minutesβ S
JavaScript | 42 sec ago | 0.25 KB
-
π Swapzone +37% glitch
JavaScript | 46 sec ago | 0.24 KB
-
π Swapzone +37% glitch β J
JavaScript | 50 sec 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