diff options
Diffstat (limited to 'src/clojure/contrib/pprint/examples/hexdump.clj')
-rw-r--r-- | src/clojure/contrib/pprint/examples/hexdump.clj | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/clojure/contrib/pprint/examples/hexdump.clj b/src/clojure/contrib/pprint/examples/hexdump.clj index 0555b639..e7b4d49c 100644 --- a/src/clojure/contrib/pprint/examples/hexdump.clj +++ b/src/clojure/contrib/pprint/examples/hexdump.clj @@ -1,3 +1,8 @@ +;;; hexdump.clj -- part of the pretty printer for Clojure + +;; by Tom Faulhaber +;; April 3, 2009 + ; Copyright (c) Tom Faulhaber, Dec 2008. All rights reserved. ; The use and distribution terms for this software are covered by the ; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) @@ -6,6 +11,11 @@ ; the terms of this license. ; You must not remove this notice, or any other, from this software. +;; This example is a classic hexdump program written using cl-format. + +;; For some local color, it was written in Dulles Airport while waiting for a flight +;; home to San Francisco. + (ns clojure.contrib.pprint.examples.hexdump (:use clojure.contrib.pprint) (:gen-class (:main true))) |