Live data from Hacker News

Clojure Hosted on Go

github.com

11–20 of 28 posts

Re: Clojure Hosted on Go

#13

There’s also typed fp on Go: https://lisette.run/ The Go runtime, toolchain, and ecosystem are great- it makes sense to target it.

Gosh this is exactly what I’m looking for, would love for this to become mature and popular.

Re: Clojure Hosted on Go

#16
From what I can gather from the site it has no security or sandboxing features. Or am I missing something?

I'm asking because I'm thinking about R7RS Wile scheme[1] as an embedded language, which has some basic security features. But it's heavily vibe-coded and that puts me off a bit, so I'm looking for other Lisp or Scheme dialects in Go.

[1] https://github.com/aalpar/wile

Re: Clojure Hosted on Go

#17

There’s also typed fp on Go: https://lisette.run/ The Go runtime, toolchain, and ecosystem are great- it makes sense to target it.

Looks like a nice language. They market it as a Rust-like looks more like an ML to me.

Re: Clojure Hosted on Go

#20

From what I can gather from the site it has no security or sandboxing features. Or am I missing something? I'm asking because I'm thinking about R7RS Wile scheme[1] as an embedded language, which has some basic security features. But it's heavily vibe-coded and that puts me off a bit, so I'm looking for other Lisp or Scheme dialects in Go. [1] https://github.com/aalpar/wile

A Go executable is self-contained. You can put it in a Docker container with very little overhead. That would give you some sandboxing at least.
Post reply on HN