Created
October 15, 2015 03:43
-
-
Save CapnKernel/ea088ef9e029afcee5c5 to your computer and use it in GitHub Desktop.
bbm.scm
This file contains hidden or 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
| #! /usr/bin/guile -s | |
| !# | |
| (define bbm | |
| (lambda (n) | |
| (cond [(= n 0) | |
| '(Benoit B Mandelbrot)] | |
| [else | |
| `(Benoit ,(bbm (- n 1)) Mandelbrot)]))) | |
| (display (bbm 2)) | |
| (newline) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment