Re: [go-nuts] gomobile support flutter??

2023-10-07 Thread Kurtis Rader
On Sat, Oct 7, 2023 at 10:02 PM mi elk wrote: > gomobile add flutter support > More context would help. By "gomobile" I assume you are referring to https://cs.opensource.google/go/x/mobile. By "flutter" I assume you are referring to https://github.com/go-flutter-desktop/go-flutter. But I am

[go-nuts] gomobile support flutter??

2023-10-07 Thread mi elk
gomobile add flutter support -- 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 an email to golang-nuts+unsubscr...@googlegroups.com. To view this discussion on the web visit

Re: [go-nuts] the environment variable GOROOT doesn't load for work with go

2023-10-07 Thread TheDiveO
please simply follow the official installation instructions here, https://go.dev/doc/install, and select the Windows tab. This will set up everything correctly, avoiding the trouble you might have gotten into by installing individual bits and pieces into directories there they do not belong to

Re: [go-nuts] File size of Google docs when mounted

2023-10-07 Thread Mandolyte
For the sake of posterity... here is what Bard says. *Prompt*: In golang, develop code to find the size of a google doc *Response*: To find the size of a Google Doc in Golang, you can use the following steps: 1. Import the necessary packages: import ( "context" "fmt" "io/ioutil"

Re: [go-nuts] the environment variable GOROOT doesn't load for work with go

2023-10-07 Thread Dorian ROSSE
hello, on system windows there are both kind of installing to set up and put : 1) download and install the go exe for install in the default folder c:/programs 2) download and install the sources files of go for put it in c:/windows/system32 for the GOROOT 3) download and install the

Re: [go-nuts] the environment variable GOROOT doesn't load for work with go

2023-10-07 Thread Dorian ROSSE
I have too of course set up the environment variable by type in the start button env then i open the botton more environement variable where i have set up the GOROOT and the GOPATH following my setup needing, thanks you in advance to help myself fully use my GOROOT and my GOPATH, Regards.

Re: [go-nuts] How to understand assembly code related to defer

2023-10-07 Thread j2gg0s
Thanks for the guidance, the corresponding documentation helped me a lot 在2023年9月28日星期四 UTC+8 11:34:21 写道: > On Tue, Sep 26, 2023 at 11:06 PM j2gg0s wrote: > > > > Related go code: > > 22 //go:noinline > > 23 func add(a, b int) int { > > 24 defer func() { > > 25 fmt.Println(3) > > 26 }() > >