How to get hours difference between now and old date in Go

1 Answer

0 votes
package main
   
import (
    "fmt"
    "time"
)
   
func main() {
    now := time.Now()
     
    dt := time.Date(2020, 8, 15, 13, 42, 26, 3216532101, time.UTC)
     
    diff := now.Sub(dt)
     
    hours := int(diff.Hours())
    
    fmt.Println(now)
    fmt.Println(dt)
 
    fmt.Println(hours)
}
  
  
  
  
/*
run:
  
2020-08-16 16:50:47.641637948 +0000 UTC m=+0.000073171
2020-08-15 13:42:29.216532101 +0000 UTC
27
  
*/

 



answered Aug 16, 2020 by avibootz
edited Aug 16, 2020 by avibootz

Related questions

1 answer 185 views
1 answer 171 views
1 answer 184 views
2 answers 143 views
1 answer 109 views
2 answers 206 views
2 answers 285 views
...