Skip to content

Instantly share code, notes, and snippets.

@gzeureka
Created April 12, 2012 14:26
Show Gist options
  • Select an option

  • Save gzeureka/2367691 to your computer and use it in GitHub Desktop.

Select an option

Save gzeureka/2367691 to your computer and use it in GitHub Desktop.
How to exclude var from clojure core -- use (:refer-clojure :exclude [xxx])
(ns util.message-utils
(:refer-clojure :exclude [format])
(:import (java.text MessageFormat)))
(defn format [string & args]
(MessageFormat/format string (to-array args)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment