Julia Program to print step of 10s using range method

Program

# Julia program to print Array of step 10 using range()
println("Printing 10's from 0 to 100")
array1 = range(0, stop=100, step=10)
println(array1)

Output

$ julia print-step-of-10-using-range-method.jl 
Printing 10's from 0 to 100
0:10:100

Interactive Mode

``` julia> range(0, stop=100, step=10) 0:10:100 ```