Sha256: 207e2728b93ec52017bc1057ef43d4507672a37aa221b322b855386c150cea99
Contents?: true
Size: 705 Bytes
Versions: 122
Compression:
Stored size: 705 Bytes
Contents
// This is a "stub" file. It's a little start on your solution. // It's not a complete solution though; you have to write some code. // Package gigasecond should have a package comment that summarizes what it's about. // https://golang.org/doc/effective_go.html#commentary package gigasecond // import path for the time package from the standard library import "time" // AddGigasecond should have a comment documenting it. func AddGigasecond(t time.Time) time.Time { // Write some code here to pass the test suite. // Then remove all the stock comments. // They're here to help you get started but they only clutter a finished solution. // If you leave them in, reviewers may protest! return t }
Version data entries
122 entries across 122 versions & 1 rubygems