Skip to content

Instantly share code, notes, and snippets.

@pyrmont
Created April 3, 2019 18:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pyrmont/8132c9a0d41f252d8d84961415c12b8d to your computer and use it in GitHub Desktop.
Save pyrmont/8132c9a0d41f252d8d84961415c12b8d to your computer and use it in GitHub Desktop.
Example CLJS file to be in src/foo/core.cljs
(ns foo.core
(:require clojure.string))
(defn try-it []
(clojure.string/trimr 1))
(defn try-it2 []
(clojure.string/triml 1))
(defn call-me []
(try-it))
(defn call-me2 []
(try-it2))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment