Guest User

Untitled

a guest
Oct 22nd, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. package main
  2.  
  3. import (
  4. "time"
  5. "fmt"
  6. )
  7.  
  8. func main() {
  9.  
  10. loc, _ := time.LoadLocation("Europe/Berlin")
  11.  
  12. const layout = "2006-01-20_15-04-05"
  13.  
  14. t := time.Date(2013, 07, 23, 21, 32, 39, 0, loc)
  15. fmt.Println(t)
  16. fmt.Println(t.Format(layout))
  17. }
  18.  
  19. 0
Add Comment
Please, Sign In to add comment