function test()
    for i in 1:50
        if i % 2 == 0
            println("even")
        else
            println("odd")
        end
    end
end
