Skip to content

Instantly share code, notes, and snippets.

@stanaka
Created September 17, 2014 07:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stanaka/3192dd07b0f363f63ff5 to your computer and use it in GitHub Desktop.
Save stanaka/3192dd07b0f363f63ff5 to your computer and use it in GitHub Desktop.
time.Now()を実行するだけのGo
package main
import "fmt"
import "time"
func main() {
t := time.Now()
fmt.Printf("Now: %v\n", t)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment