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
Put the following snippet in a file, say foo.jl, and run load("foo.jl")
load("foo.jl")
function foo() for 1 in 1:10 bar() end end
The error printed is:
syntax error: invalid assignment lvalue 1 at foo.jl:6 in include at /mnt/hdd/work/julia/src/boot.jl:201 at foo.jl:0 in load at util.jl:218
Note that the line referred to is the last line of the function, not the line with the actual error. This could lead to unneeded head-banging.
[pao: title]
The text was updated successfully, but these errors were encountered:
81a0f7f
No branches or pull requests
Put the following snippet in a file, say foo.jl, and run
load("foo.jl")
The error printed is:
Note that the line referred to is the last line of the function, not the line with the actual error. This could lead to unneeded head-banging.
[pao: title]
The text was updated successfully, but these errors were encountered: