for element in {1..=10}
    echo $element
    if test $element -eq 5
        break
    end
end

for elem in {1..=10}
    if test $((elem % 2)) -eq 1
        continue
    end
    echo $elem
end

