Julia 언어 소스: ## Filename: testHexView_02.jl ## ## Purpose: Show the hexadecimal codes of the given binary file. ## ## Set Env: set path=d:\julia;%path% ## Execute: julia testHexView_02.jl [filename] ## ## Date: 2013. 8. 4. function printUsage() @printf("Using: julia testHexView_02.jl [filename]\n") end function toHex(b) s = "" x1 = (b & 0xF0) >> 4 x2 = b & 0x0F if x1 > 9 s = s * char(int('A') + ..