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
https://golang.iswbm.com/c01/c01_06.html
The text was updated successfully, but these errors were encountered:
// && 两边的表达式都会执行 fmt.Println( age > 18 && gender == "male") // gender == "male" 并不会执行 fmt.Println( age < 18 || gender == "male")
这两行注释写反了吧
Sorry, something went wrong.
应该是这样 // && 两边的表达式都会执行 fmt.Println( age < 18 && gender == "male")
// && 两边的表达式都会执行 fmt.Println( age > 18 && gender == "male") &&右边的不会执行了
No branches or pull requests
1.6 数据类型:字典与布尔类型 — Go编程时光 1.0.0 documentation
https://golang.iswbm.com/c01/c01_06.html
The text was updated successfully, but these errors were encountered: