[go-nuts] Re: Any embedded scripting language for Go

2020-10-29 Thread Kaveh Shahbazian
If you like using/trying one from lisp family, there is also Zygo . On Wednesday, October 21, 2020 at 7:33:16 AM UTC+2 aravind...@gmail.com wrote: > Hi, > > I am looking for a way to build interactive app,where user will be giving > instructions to draw

[go-nuts] Re: Any embedded scripting language for Go

2020-10-21 Thread Max
It's also possible to embed a Go interpreter in a Go App - in this way, the scripting language is Go itself. There are several fairly complete Go interpreters around, including at least: https://github.com/cosmos72/gomacro (disclaimer: I am the author) https://github.com/traefik/yaegi