Created
July 14, 2014 08:19
-
-
Save krisajenkins/086e56974a8da92e9659 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns demo | |
(:require-macros [schema.macros :as sm]) | |
(:require [schema.core :as s])) | |
(defn twice | |
[x] | |
(* x 2)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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