79583900

Date: 2025-04-21 00:57:21
Score: 0.5
Natty:
Report link
package main

import (
    "fmt"
    "time"
)

func main() {
    input := "2025-04-21T09:18:00Z" // ISO 8601 string
    t, err := time.Parse(time.RFC3339, input)
    if err != nil {
        panic(err)
    }
    fmt.Println("Parsed Time:", t)
    fmt.Println("Local Time:", t.Local())
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: maestrom4