Sample code for 30+ languages & platforms
Go

Example: Http.GenTimeStamp method

Demonstrates the GenTimeStamp method.

Chilkat Go Downloads

Go
    http := chilkat.NewHttp()

    // Return current date/time in the following format: Day, DD Mon YYYY HH:MM:SS GMT
    timestamp := http.GenTimeStamp()
    fmt.Println(*timestamp)

    // Sample Output:
    // Thu, 21 Aug 2025 11:17:31 GMT

    http.DisposeHttp()