beginners

Getting started with Clojure/ClojureScript? Welcome! Also try: https://ask.clojure.org. Check out resources at https://gist.github.com/yogthos/be323be0361c589570a6da4ccc85f58f.
practicalli-john 2021-05-30T04:38:51.166800Z

Perhaps using a user.clj file would allow you to run one or more functions before figwheel. The REPL will automatically read and evaluate code in a user.clj file, if found on the classpath. I am not sure of the ordering, but hopefully the user.clj code is evaluated before figwheel-main. There is an example here for Clojure project.clj fileCLI tools, but the code should be the same for Leiningen. Add the directory to a dev profile in Leiningen by including :source-paths ["dev"] in the https://practical.li/clojure/clojure-tools/projects/configure-repl-startup.html

Tero Matinlassi 2021-05-30T06:24:00.167Z

Maybe not exactly the format your looking for, but you might want to check https://clojuredocs.org/clojure.pprint/print-table

lunik1 2021-05-30T22:08:06.170100Z

Is there an up-to-date source on core.logic's pattern matching syntax? Best I could find is https://github.com/frenchy64/Logic-Starter/wiki#matche but it still says to prefix implicit variables with ? (which I believe is no longer needed)?