diff options
author | Colin Okay <59481711+cbeo@users.noreply.github.com> | 2020-07-10 13:22:06 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-10 13:22:06 -0500 |
commit | 82944ed170182f88f373c4a03fefac9a3ac6730b (patch) | |
tree | d96420b0340115f7a6a188acb5a73c2441285c2e | |
parent | d54aa29b7869a4508ead4d608126637348d24872 (diff) |
spelling.
-rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -45,20 +45,20 @@ example apears at the end of the document, following the tutorial. ``` -### Fun With Fibbonacci +### Fun With Fibonacci ``` lisp > (defun fibs () - "Creates an infinite series of Fibbonacci numbers." + "Creates an infinite series of Fibonacci numbers." (from-recurrence (lambda (n-1 n-2) (+ n-1 n-2)) 1 0)) -;; First ten Fibbonacci numbers +;; First ten Fibonacci numbers > (take 10 (fibs)) ;; (1 2 3 5 8 13 21 34 55 89) -;; Just the 40th Fibbonacci number, indexed from 0 +;; Just the 40th Fibonacci number, indexed from 0 > (car (pick-out '(40) (fibs))) ;; 267914296 ``` |