Closed
Description
These currently throw an error:
julia> [;]
ERROR: syntax: unexpected ";"
Stacktrace:
[1] top-level scope
@ none:1
julia> [;;]
ERROR: syntax: unexpected ";"
Stacktrace:
[1] top-level scope
@ none:1
julia> [;;;]
ERROR: syntax: unexpected ";"
Stacktrace:
[1] top-level scope
@ none:1
I think it would make sense for them to return an empty vector/0×0 matrix/0×0×0 array respectively.