Created
April 3, 2019 18:17
-
-
Save pyrmont/8132c9a0d41f252d8d84961415c12b8d to your computer and use it in GitHub Desktop.
Example CLJS file to be in src/foo/core.cljs
This file contains 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 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