Joker, Janet, Glojure and now Let-go. Am I missing something?
Show HN: I made a Clojure-like language in Go, boots in 7ms
61–70 of 106 posts
There is one being made in C http://mino-lang.org/
Re: Show HN: I made a Clojure-like language in Go, boots in 7ms
#62[flagged]
As much as we may all hate to admit it, vibecoding is very close to just being the new programming.
Re: Show HN: I made a Clojure-like language in Go, boots in 7ms
#63There seems to be a surge in compile to Go projects recently. To me this signals that the runtime / stdlib of Go is one of the best out there (when going the GD'd route), but the surface level (syntax) is too simple/verbose and lacks the expressiveness developers want. So far Lisette ( http://lisette.run ) seems to be the best/most active version of a compile to Go language out there.
That does look pretty good. I don’t love the mixing of PascalCase / camelCase and snake_case, though.
Re: Show HN: I made a Clojure-like language in Go, boots in 7ms
#64Earlier quoted context omitted.
Yes, I know about this one. I'm even comparing against it in my benchmarks :)
You need to update the go-joker numbers, I removed the GIL yesterday or so and did some changes to the IR. ;)
Updated. Looks like my VM gets a beating from wazero but that's kind of expected :D
Re: Show HN: I made a Clojure-like language in Go, boots in 7ms
#65The JVM can boot up in microseconds you just have to tune it a bit.
Re: Show HN: I made a Clojure-like language in Go, boots in 7ms
#66[dead]
Re: Show HN: I made a Clojure-like language in Go, boots in 7ms
#67The JVM can boot up in microseconds you just have to tune it a bit.
The JVM itself - yes, but then you need to wait for Clojure itself. Clojure is famously slow because it interns a bunch of stuff and computes var references every time it boots. I never intended for let-go to be a race car but small distro, low memory usage and snappy start are its priorities at the moment.
Re: Show HN: I made a Clojure-like language in Go, boots in 7ms
#68[flagged]
Re: Show HN: I made a Clojure-like language in Go, boots in 7ms
#69[flagged]
Re: Show HN: I made a Clojure-like language in Go, boots in 7ms
#70[flagged]