Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
@Numinex
Clojure is based on Java's JVM
ClojureScript is a client web that compiled to JavaScript
Ref: https://clojure.org/ -
Numinex10867y@purpletoxicrain Thanks, that cleared it up. For a moment there, I thought someone didn't know the difference between Java and JavaScript.
-
@Numinex Lisps are an incredibly powerful set of languages.
There is a one-to-one relationship between the code and the abstract syntax tree. This allows macros have the same language features as the language itself.
That is why they are known as programmable programming language
(defn rant []
(go
(let [feature-pool (atom [:ui-fixes])]
(loop []
(<! wait-for-release-week)
(->>
shit-load-of-features
(reset! feature-pool)
develop-features
ask-for-feature-status
deploy-in-last-minute
find-a-bug-and-rollback release
(recur))))
(rant)
undefined