Run parts of other files from a loop

Ignore the naysayers - go wild !!

Use readline to read the lines you want and eval them

open("file2.jl") do io
    M = nothing
    while M === nothing
       eval(Meta.parse(readline(io)))
    end
end