aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTojo <masaya@tojo.tokyo>2018-06-24 12:32:39 +0900
committerMasaya Tojo <masaya@tojo.tokyo>2018-06-24 12:52:25 +0900
commit0795e7bca7d02996a8f1852218118cd82e4e5309 (patch)
tree544f5d261ff9d2d69cd97c4046927768ad99b90a
parenta06e6a9dbc872373c0d5c8092534929be60019a3 (diff)
Add INSTALL and USAGE section
-rw-r--r--README.md25
1 files changed, 25 insertions, 0 deletions
diff --git a/README.md b/README.md
index 30bd341..bfb74c0 100644
--- a/README.md
+++ b/README.md
@@ -2,3 +2,28 @@
Draw sexp.
![fib.png](https://raw.githubusercontent.com/wiki/tojoqk/pict-sexp/images/fib.png)
+
+# INSALL
+```
+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)
+```