Skip to content

Instantly share code, notes, and snippets.

@sugilog
Created December 28, 2014 04:00
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 sugilog/bed1c8a2d7b6f159702d to your computer and use it in GitHub Desktop.
Save sugilog/bed1c8a2d7b6f159702d to your computer and use it in GitHub Desktop.
パッケージ:time
package main
import (
"fmt"
"time"
)
func main() {
fmt.Println( time.Now() );
time.Sleep( 1000 * time.Millisecond );
fmt.Println( time.Now() );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment