Skip to content

Instantly share code, notes, and snippets.

@krisajenkins
Created July 14, 2014 08:19
Show Gist options
  • Save krisajenkins/086e56974a8da92e9659 to your computer and use it in GitHub Desktop.
Save krisajenkins/086e56974a8da92e9659 to your computer and use it in GitHub Desktop.
(ns demo
(:require-macros [schema.macros :as sm])
(:require [schema.core :as s]))
(defn twice
[x]
(* x 2))
(defproject demo "0.1.0-SNAPSHOT"
:dependencies [[org.clojure/clojure "1.6.0"]
[prismatic/schema "0.2.4"]
[org.clojure/clojurescript "0.0-2268"]]
:plugins [[lein-cljsbuild "1.0.3"]]
:cljsbuild {:builds {:demo {:source-paths ["src"]
:compiler {:output-to "target/demo.cljs"
:output-dir "target"
:optimizations :advanced}}}})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment