Quick actions

cmd+k|ctrl+k

Navigation

Languages

Timing Test

Snippet info

Language

Go

Visibility

public

Author

andrew.fiorillo

Created

2018-01-30T15:13:25Z

Updated

2018-01-30T15:13:25Z

package main

import (
    "fmt"
    "time"
)

func main() {
    fmt.Println(time.Now().Format("business-20060102150405"))
    
    time.Sleep(2 * time.Second)
    
    fmt.Println(time.Now().Format("business-20060102150405"))
}
INFO