|
|
|
|
|
by cjsaylor
2208 days ago
|
|
I looked into this subject a bit more deeply in regards to Go, and you are right. Go doesn't have a REPL built in, and most of the implemented REPLs only work off of stdin. So, the Clojure style of REPL development is not as straight-forward in Go. However, it does seem like one of the userland REPLs could be adapted to work with an editor (like vscode) if the input source wasn't locked to stdin. It seems like a ripe target for an opensource library to accomplish this. I may explore this later on when I have more time to devote. |
|