Re: [go-nuts] What is time.Nanosecond ?

2017-04-06 Thread mpboom2003
Thank you! I get it now. -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. For more options, visit

Re: [go-nuts] What is time.Nanosecond ?

2017-04-05 Thread Rob Pike
% go doc time.Second const ( Nanosecond Duration = 1 Microsecond = 1000 * Nanosecond Millisecond = 1000 * Microsecond Second = 1000 * Millisecond Minute = 60 * Second Hour = 60 * Minute ) Common durations. There is no definition

Re: [go-nuts] What is time.Nanosecond ?

2017-04-05 Thread Sebastien Binet
On Wed, Apr 5, 2017 at 5:37 PM, wrote: > Hello, > > I just saw this example: > > time.Sleep(n * time.Second) > > I then looked at http://golang.org/pkg/time, but i couldn't find out what > time.Second is... It is not a function, not a method, not a type... > > What is

[go-nuts] What is time.Nanosecond ?

2017-04-05 Thread mpboom2003
Hello, I just saw this example: time.Sleep(n * time.Second) I then looked at http://golang.org/pkg/time, but i couldn't find out what time.Second is... It is not a function, not a method, not a type... What is this??? Thank you for your time! - Mark -- You received this message because