From: Ramakrishnan Muthukrishnan <vu3rdd@gmail.com>
Date: Wed, 1 Sep 2010 08:05:26 +0000 (+0530)
Subject: added example usage for pictlang
X-Git-Url: https://git.rkrishnan.org/%5B/frontends/flags//%22doc.html/%22?a=commitdiff_plain;h=7e4be91ec6299907c8c6d7301a34981f9d441ab1;p=sicp.git

added example usage for pictlang
---

diff --git a/README b/README
index 485c595..8977bdb 100644
--- a/README
+++ b/README
@@ -13,9 +13,12 @@ namespaces and do:
 > (show painter frame)
 
 where painter is the procedure representing the picture and frame is the
-frame on which you want to draw it.
+frame on which you want to draw it. An example is the 'wave' painter
+defined in the pictlang.pictures namespace.
 
-TODO:
+> (show wave (make-frame (make-vect 0 0)
+                         (make-vect 1 0)
+                         (make-vect 0 1)))
 
-1. make it a lein project.
-2. scan non-programming exercise/solutions and put it as jpg/pdfs.
\ No newline at end of file
+The implementation was directly inspired and influenced by the one in the
+JVM based Scheme implementation called JAKLD.