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
"Value truthiness" - everything here is correct, but perhaps this should be explained:
julia> true * 6 6 julia> true + 8 9 julia> false + 8 8 julia> true + 64.7 65.7 julia> 6 + (true)im 6 + 1im
(That is, true evaluates in numerical contexts to 1, and false to 0.)
The text was updated successfully, but these errors were encountered:
Thanks! I'll add it.
Sorry, something went wrong.
The last example for continue in a while-loop is not finished. The last sentence hangs incomplete
continue
while
No branches or pull requests
"Value truthiness" - everything here is correct, but perhaps this should be explained:
(That is, true evaluates in numerical contexts to 1, and false to 0.)
The text was updated successfully, but these errors were encountered: