-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Closed
Description
_
_ _ _(_)_ | Documentation: https://docs.julialang.org
(_) | (_) (_) |
_ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 1.9.0-DEV.1171 (2022-08-23)
_/ |\__'_|_|_|\__'_| | Commit df3da0582a7 (2 days old master)
|__/ |
julia> let a = 1, b = 2 # works
0
end
0
julia> let # works
(a = 1,),
(b = 2,)
0
end
0
julia> let # works
(a = 1),
(b = 2)
0
end
0
julia> let # fails
a = 1,
b = 2
0
end
ERROR: syntax: invalid assignment location "1" around REPL[4]:2
Stacktrace:
[1] top-level scope
@ REPL[4]:1
1.8.0 behaves the same.
Metadata
Metadata
Assignees
Labels
No labels