1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 07:08:01 +00:00

Specify the code block as clojure.

This commit is contained in:
jbranchaud
2015-11-28 11:39:49 -06:00
parent 85b1bc9ebc
commit e50eb791b2

View File

@@ -6,7 +6,7 @@ lists are stored as metadata for the function. So, if you are trying to
figure out what arity a function is or what variations of arguments it figure out what arity a function is or what variations of arguments it
takes, you can check the metadata like so: takes, you can check the metadata like so:
``` ```clojure
> (:arglists (meta #'str)) > (:arglists (meta #'str))
([] [x] [x & ys]) ([] [x] [x & ys])
``` ```