// +build ignore,OMIT

package main

import (
	"fmt"
	"time"
)

func main() {
	// START OMIT
	t := time.Now()
	fmt.Println(t.In(time.UTC))
	home, _ := time.LoadLocation("Australia/Sydney")
	fmt.Println(t.In(home))
	// END OMIT
}
