We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The third parameter to fmt.Printf() should be flagged with an error saying: "Usage of package time without selector"
fmt.Printf()
package main import ( "fmt" "time" ) func main() { fmt.Printf("%s - %s\n", time.Now().Format(time.RFC3339), time) }