Start, step, length for `range`

start is a positional argument, so this works

julia> range(0, step=0.01, length=2^10)
0.0:0.01:10.23

There has been this issue recently which discussed the design of the range API in detail:

https://github.com/JuliaLang/julia/issues/38750

4 Likes