현재 시각을 컨솔에 보여주는 간단한 애플리케이션의 Go 언어 소스 코드이다. UTC란 1970년 1월 1일 0시 0분 0초를 기준으로 하여 경과된 초 단위의 총 시간을 의미한다. * UTC(Universal Time Coordinated, 협정세계시, 協定世界時) /* * Filename: testCTime.go * * Compile: go build testCTime.go * Execute: ./testCTime * * Execute without compiling: go run testCTime.go * * Date: 2012. 6. 18. */ package main import ( "fmt" "time" "math" ) func main() { var weekNames []string = []st..