Skip to content

Instantly share code, notes, and snippets.

@Gonzih
Created March 24, 2013 17:59
Show Gist options
  • Save Gonzih/5232855 to your computer and use it in GitHub Desktop.
Save Gonzih/5232855 to your computer and use it in GitHub Desktop.
clj redefine +
(ns my-awesome-nampspace
(:refer-clojure :exclude [+]))
(defn + [a b]
(println (str a b)))
(+ "aaa" "bbb")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment