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
(defun fib (n) | |
(labels ((calc-fib (n a b) | |
(if (= n 0) | |
a | |
(calc-fib (- n 1) b (+ a b))))) | |
(calc-fib n 0 1))) | |
(time (print (fib 7000))) |
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
<?php echo gangmei_get_the_post_thumbnail_url($post->ID, 'large'); ?> |