Skip to content

Instantly share code, notes, and snippets.

@hymkor
Created October 23, 2014 12:42
Show Gist options
  • Save hymkor/4a09c748a500fc1496d4 to your computer and use it in GitHub Desktop.
Save hymkor/4a09c748a500fc1496d4 to your computer and use it in GitHub Desktop.
過去にほとんど同じプログラムを書いてた → https://gist.github.com/zetamatta/071061f9f6ff4171ae28
package main
import "fmt"
import "os"
func main() {
for _, arg := range os.Args[1:] {
for _, ch := range arg {
fmt.Printf("[%X] ", ch)
}
fmt.Print("\n")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment