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
I tried inserting a snippet in a julia notebook (julia 1.4). The very first one I tried was:
s = 0 for i = [1 2 5 100 -1 5] s = s + i @printf("i = %4d → s = %4d\n", i, s) end
and it didn't work due to @printf being deprecated and removed from the language.
The text was updated successfully, but these errors were encountered:
adding using Printf should do it
using Printf
Sorry, something went wrong.
already done, was just held back
No branches or pull requests
I tried inserting a snippet in a julia notebook (julia 1.4). The very first one I tried was:
and it didn't work due to @printf being deprecated and removed from the language.
The text was updated successfully, but these errors were encountered: