I would like to be able to call the runtime implemented "now()" function 
similar to how the "time" package does.

For example the Time.Now() function in the time package looks like the 
following

func now() (sec int64,nsec int32, mono int64)
func Now()  Time{
    sec, nsec, mono := now()
    ...
}


When I build packages using "go build" using the same structure I get the 
error:
       missing function body for "now"

How is this package built such that it can access the "now()" function and 
how can I access those runtime implemented functions in my own packages?

Thank you!

-- 
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 https://groups.google.com/d/optout.

Reply via email to