Why is there no keyword chaining in julia?

for x in 1:30, y in 1:30
    if x == 5 && y == 5
        dosomething()
    else let obj = array[y, x]  # Chained keywords here
        if obj == FOO
            dosomethingelse()
        end
    end
end            


Reply via email to