I'm seeing the same behavior. I wonder if this has to do with the REPL clearing the terminal or doing other funny business with it. If you printed something, and the REPL immediately cleared the line or does some other funky non-linear terminal stuff, that could explain this sort of thing.
On Wed, Mar 11, 2015 at 7:35 AM, Ben Arthur <[email protected]> wrote: > nice catch amit. > > perhaps most importantly, one can demonstrate that all the commands are > executed, just not printed to the REPL, with the following code. this is > what i was most worried about. though the inconsistent printing does not > inspire confidence. > > julia> @async (println("foo");println("bar");println("baz");global qwer=1) > foo > Task (queued) @0x00007f055c209340bar > > > julia> > julia> qwer > 1 >
