Re: time and now showing different time?

2015-01-11 Thread Gabor Szabo
Neat. Based on that I tried to explain it here: http://perl6maven.com/tutorial/timestamp Gabor On Sat, Jan 10, 2015 at 4:13 PM, wrote: > > On 01/10/2015 03:12 PM, Gabor Szabo wrote: > > > say time; say now; say time; say now; > > > > 1420898839 > > Instant:1420898874.659941 > > 1420898839 > > In

Re: Debug core modules

2015-01-11 Thread Elizabeth Mattijsen
> On 11 Jan 2015, at 10:57, MAX PUX wrote: > is there a way to debug core modules like IO::Socket::INET? Generally, you can copy a module out of the core settings and run from source: the module in source will hide the one from the settings. Is that what you mean? Liz

Re: Could method calls warn in void context?

2015-01-11 Thread Carl Mäsak
...It could also be taken as a subtle suggestion to write unit tests, in which case you would discover such logical bugs within one red/green/refactor iteration. ;-) // Carl On Sat, Jan 10, 2015 at 10:12 PM, Gabor Szabo wrote: > > > On Sat, Jan 10, 2015 at 11:02 PM, Moritz Lenz wrote: >> >> To

Debug core modules

2015-01-11 Thread MAX PUX
Hi, is there a way to debug core modules like IO::Socket::INET? Thanks, Massimo