Skip to content

Instantly share code, notes, and snippets.

View bcaccinolo's full-sized avatar

Benoit Caccinolo bcaccinolo

View GitHub Profile
@bcaccinolo
bcaccinolo / yardoc.md
Last active October 11, 2019 09:42
Yardoc template

Links

Documentation examples

You likely won't use all the available tags (words starting with an @) shown in the bellow examples. These examples are more of a cheat sheet of what you can do and where you can use them.

Modules

@bcaccinolo
bcaccinolo / convert-line.clj
Created December 10, 2020 16:17
My first babashka/clojure script
#!/home/benoit/bin/bb
(def argument (first *command-line-args*))
(->> argument
(#(str/split % #", "))
(map #(str "\"" % "\""))
(str/join ", ")
println
)