Re: [go-nuts] Re: ANN: gijit, a Go interpreter

2018-02-21 Thread Jason E. Aten
I've released gijit v1.0.0. This brings over the full typesystem from GopherJS's implementation into the gijit LuaJIT environment. I ported it to windows, and added complex number support. https://github.com/gijit/gi Release v1.0.0 of *gijit* marks these milestones: - the full program

Re: [go-nuts] Re: ANN: gijit, a Go interpreter

2018-02-09 Thread Jason E. Aten
You're welcome. I would add credit to Lua's originators and contributors from around the world. Roberto Ierusalimschy et al's design and evolution of Lua over the last 25 years make it a (perhaps surprisingly) great tool for this purpose. It certainly surprised me. Lua's primary goal of acting

Re: [go-nuts] Re: ANN: gijit, a Go interpreter

2018-02-08 Thread Christopher Sebastian
Thanks for the great explanation, Jason. It really helps me to understand the high-level-view much better. :) ~Christopher -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send

[go-nuts] Re: ANN: gijit, a Go interpreter

2018-02-08 Thread Jason E. Aten
On Friday, February 9, 2018 at 12:48:17 PM UTC+7, Christopher Sebastian wrote: > > gijit looks really interesting. Do you have a high-level > description/diagram anywhere that gives an overview of how the system > works? [0] > > I took a brief look at the git repo, and it seems like you're

[go-nuts] Re: ANN: gijit, a Go interpreter

2018-02-08 Thread Christopher Sebastian
gijit looks really interesting. Do you have a high-level description/diagram anywhere that gives an overview of how the system works? I took a brief look at the git repo, and it seems like you're translating Go into Javascript, and then to Lua, and then using LuaJIT. Is that right? How do

[go-nuts] Re: ANN: gijit, a Go interpreter

2018-02-08 Thread Zellyn
Very nice. You might be interested in this Group too: https://groups.google.com/forum/#!forum/go-interpreter On Wednesday, February 7, 2018 at 3:00:06 PM UTC-5, Jason E. Aten wrote: > > https://github.com/gijit/gi > > My interactive Go REPL, gijit, is quite useful now. It has structs, >