12 lines
119 B
Go
12 lines
119 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println("hello world")
|
|
fmt.Println("Time:", time.Now())
|
|
}
|