Go 언어 소스: /* * Filename: testHexView_02.go * * Purpose: Show Hexadecimal codes of the given binary file. * * Execute: go run testHexView_02.go [filename] * * or * * Compile: go build testHexView_02.go * Execute: ./testHexView_02.go [filename] * * Date: 2013. 8. 3. */ package main import ( "fmt" "os" ) func print(str string) { fmt.Printf("%s", str); } func println(str string) { fmt.Printf("%s\n",..