blob: 53c880480725e412822b03b5eba659e846356756 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# pict-sexp
Draw sexp.
![fib.png](https://raw.githubusercontent.com/wiki/tojoqk/pict-sexp/images/fib.png)
# INSTALL
```
raco pkg install https://github.com/tojoqk/pict-sexp.git
```
# USAGE
Save as "pict-fib.png".
```
#lang racket
(require pict)
(require pict-sexp)
(define pict-fib
(pict-sexp
'(define (fib n)
(cond
[(= n 0) 0]
[(= n 1) 1]
[else
(+ (fib (- n 1))
(fib (- n 2)))]))))
(send (pict->bitmap pict-fib) save-file "pict-fib.png" 'png)
```
|