Created
October 23, 2014 12:42
-
-
Save hymkor/4a09c748a500fc1496d4 to your computer and use it in GitHub Desktop.
過去にほとんど同じプログラムを書いてた → https://gist.github.com/zetamatta/071061f9f6ff4171ae28
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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