diff src/clojure/test_clojure/protocols/more_examples.clj @ 10:ef7dbbd6452c

added clojure source goodness
author Robert McIntyre <rlm@mit.edu>
date Sat, 21 Aug 2010 06:25:44 -0400
parents
children
line wrap: on
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/clojure/test_clojure/protocols/more_examples.clj	Sat Aug 21 06:25:44 2010 -0400
     1.3 @@ -0,0 +1,7 @@
     1.4 +(ns clojure.test-clojure.protocols.more-examples)
     1.5 +
     1.6 +(defprotocol SimpleProtocol
     1.7 +  "example protocol used by clojure tests. Note that
     1.8 +   foo collides with examples/ExampleProtocol."
     1.9 +
    1.10 +  (foo [a] ""))