ErLang 언어 소스: %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Filename: testHexView_03.erl % % Compile: erlc testHexView_03.erl % Execute: erl -f [filename] -run testHexView_03 main -run init stop -noshell % % Date: 2013. 8. 24. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -module(testHexView_03). -export([main/0]). toHex(N) -> X1 = (N band 16#F0) bsr 4, X2 = N band 16#F, S1 = if X1 string:ch..