Re: [go-nuts] Online service to run Go code with Go modules support

2020-11-21 Thread Alexey Melezhik
And what about system libraries. Tools like make or gcc required to compile some go modules, f.e. sqlite bindings? For example for gorm I get this error, due to absense of gcc compiler: github.com/mattn/go-sqlite3 exec: "gcc": executable file not found in $PATH

Re: [go-nuts] Online service to run Go code with Go modules support

2020-11-20 Thread Alexey Melezhik
Ahh, ok ... ))) пятница, 20 ноября 2020 г. в 20:01:22 UTC-6, kortschak: > That's not an error. > > > > https://github.com/rsc/quote/blob/754f68430672776c84704e2d10209a6ec700cd64/quote.go#L22-L24 > > On Fri, 2020-11-20 at 17:49 -0800, Alexey Melezhik wrote: > > Thanks. I receive " Don't

Re: [go-nuts] Online service to run Go code with Go modules support

2020-11-20 Thread 'Dan Kortschak' via golang-nuts
That's not an error. https://github.com/rsc/quote/blob/754f68430672776c84704e2d10209a6ec700cd64/quote.go#L22-L24 On Fri, 2020-11-20 at 17:49 -0800, Alexey Melezhik wrote: > Thanks. I receive " Don't communicate by sharing memory, share memory > by communicating. " error (?) when run the example

Re: [go-nuts] Online service to run Go code with Go modules support

2020-11-20 Thread Aston Motes
Maybe confusingly, that's the expected output: https://github.com/rsc/quote/blob/master/quote_test.go :) On Fri, Nov 20, 2020 at 5:49 PM Alexey Melezhik wrote: > Thanks. I receive " Don't communicate by sharing memory, share memory by > communicating. " error (?) when run the example > >

Re: [go-nuts] Online service to run Go code with Go modules support

2020-11-20 Thread Alexey Melezhik
Hi Paul! Thanks for pointing play-with-do service. It's cool. But I'd want something less lowlevelish. I only want user to fill a form with code to run, plus some dependencies declaration if needed. Boom! Dependencies are installed, code is executed. You've got your report to share. You could

Re: [go-nuts] Online service to run Go code with Go modules support

2020-11-20 Thread Alexey Melezhik
Thanks. I receive " Don't communicate by sharing memory, share memory by communicating. " error (?) when run the example пятница, 20 ноября 2020 г. в 17:22:44 UTC-6, kortschak: > It does, but it depends on how big of a dependency set is imported due > to timeout. The example below does work. >

Re: [go-nuts] Online service to run Go code with Go modules support

2020-11-20 Thread 'Dan Kortschak' via golang-nuts
It does, but it depends on how big of a dependency set is imported due to timeout. The example below does work. https://play.golang.org/p/WL-OhWYsx68 On Fri, 2020-11-20 at 22:45 +, Paul Jolly wrote: > Hi, > > > Hi go devs. I am thinking about brining up a service that would > > execute Go

Re: [go-nuts] Online service to run Go code with Go modules support

2020-11-20 Thread Paul Jolly
Hi, > Hi go devs. I am thinking about brining up a service that would execute Go > code with support of third party modules, so that both Go modules developers > and users could play with a code and get immediate results without having any > Go environment, through a browser. > I've noticed

[go-nuts] Online service to run Go code with Go modules support

2020-11-20 Thread Alexey Melezhik
Hi go devs. I am thinking about brining up a service that would execute Go code with support of third party modules, so that both Go modules developers and users could play with a code and get immediate results without having any Go environment, through a browser. I've noticed that there are