On Mon, Jan 12, 2015 at 11:48 AM, Tobias Leich <em...@froggs.de> wrote:
> > $ perl6 -e 'sleep 3; say now - BEGIN now;' > 3.0180351 > > Oh, so this what they call bending time around space. (Or was that the other way around?) You call now in the BEGIN block which is the first thing to finish in that code, but it is placed later in the script so it will appear only after the sleep and the second now (written as first now) will have been executed. It's clear. :) Gabor