OCaml 언어 소스: (* Filename: testHexView_02.ml Execute: ocaml testHexView_02.ml [filename] Or Compile: ocamlc -o testHexView_02 testHexView_02.ml Execute: ./testHexView_02 [filename] Or Compile: ocamlc -o testHexView_02.exe testHexView_02.ml Execute: testHexView_02 [filename] Date: 2013. 8. 20. *) open Printf;; let printUsage() = printf("Usgae: testHexView_02 [filename]\n");; let toHex n = let s = ..