We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Source:
package main import ( "fmt" "log" ) func main() { c := make(chan struct{}) main: for { select { case <-c: break main default: break } log.Println("below select") } fmt.Println("Documentation is for users.") }
https://goplay.space/#n_Dw6DNrWCX output:
invalid character 'F' looking for beginning of value
https://play.golang.org/p/n_Dw6DNrWCX output:
2009/11/10 23:00:00 below select 2009/11/10 23:00:00 below select ...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Source:
https://goplay.space/#n_Dw6DNrWCX output:
https://play.golang.org/p/n_Dw6DNrWCX output:
The text was updated successfully, but these errors were encountered: