Skip to content

Instantly share code, notes, and snippets.

@cataska
Created September 13, 2018 02:30
Show Gist options
  • Save cataska/ed4f8fd887139fbd962e75073c9070e0 to your computer and use it in GitHub Desktop.
Save cataska/ed4f8fd887139fbd962e75073c9070e0 to your computer and use it in GitHub Desktop.
;; Numbers
23
-100
1.7
-2
33e8
;; Keywords
:foobar
:2
;; Symbols
sample-symbol
othersymbol
;; Lists
'(1 2 3 4 5)
'(:foo :bar 2)
;; Vectors
[:foo :bar]
[3 4 5 nil]
;; Maps
{:foo "bar", :baz 2}
{:alphabet [:a :b :c]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment