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
break
In today's episode of "Wouldn't It Be Funny If This Actually Worked?"
package main func main() { for i := 0; i < 10; i++ { if i == 1 { _ = func() int { break return 11 }() } println(i) } println("wat???") }
Of course, this code isn't meant to compile, but Gno's output is a simple and somewhat disarming:
0 wat???
The text was updated successfully, but these errors were encountered:
This can likely work for continue and possibly also fallthrough, so a fix should verify the correct behaviour for all three statements.
continue
fallthrough
Sorry, something went wrong.
strconv
petar-dambovaliev
No branches or pull requests
In today's episode of "Wouldn't It Be Funny If This Actually Worked?"
Of course, this code isn't meant to compile, but Gno's output is a simple and somewhat disarming:
The text was updated successfully, but these errors were encountered: