package main
import (
"fmt"
"time"
)
func main() {
fmt.Println("hello world")
fmt.Println("Time:", time.Now())
}