this post was submitted on 30 Apr 2022
3 points (80.0% liked)

General Programming Discussion

7709 readers
4 users here now

A general programming discussion community.

Rules:

  1. Be civil.
  2. Please start discussions that spark conversation

Other communities

Systems

Functional Programming

Also related

founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] yogthos@lemmy.ml 0 points 2 years ago

First of all, JVM runs perfectly fine on a local machine and in many cases it can even beat C for raw performance thanks to its JIT. It has a heavier memory footprint, but that's not a huge issue for a lot of use cases. However, it's possible to run Clojure without the JVM nowadays. Babashka which is a native binary compiled with GraalVM and ClojureScript that targets Js runtimes. There is also Janet which is a Clojure inspired language that's tiny and embedable.