mirror of
https://github.com/gojp/goreportcard.git
synced 2026-01-28 22:39:05 +08:00
13 lines
121 B
Go
13 lines
121 B
Go
package testfiles
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
)
|
|
|
|
func foo() {
|
|
a := time.Now()
|
|
b := a.Sub(time.Now())
|
|
fmt.Println(a, b)
|
|
}
|