<div dir="ltr"><div><br></div><div>I found this feature from some of the merged PRs of Erlang/OTP 20</div><div><br></div><div><a href="https://github.com/erlang/otp/blob/master/lib/stdlib/doc/src/unicode_usage.xml#L66-L71">https://github.com/erlang/otp/blob/master/lib/stdlib/doc/src/unicode_usage.xml#L66-L71</a><br></div><a href="https://github.com/erlang/otp/pulls?q=unicode">https://github.com/erlang/otp/pulls?q=unicode</a><div><br>> Erlang/OTP 20.0, atoms and function can contain Unicode characters<br></div><div><br></div><div>so I built the binary from git checked out source code (from revision efcb91bce) and play with it: it seems in escript interpreting mode it works, but compiling mode still has errors:</div><div><br></div><div><div>➸ cat ./hello.erl</div><div>#!/usr/bin/env escript</div><div>%% -*- coding: utf-8 -*-</div><div>%%! +pc unicode</div><div><br></div><div>-module(hello).</div><div>%-mode(compile).</div><div>-export([main/1, 'hello_юникод_世界'/0]).</div><div><br></div><div>main(_) -></div><div>  % io:format("~p~n", [{io:printable_range(), io:getopts()}]),</div><div>  % 'hello_'(),</div><div>  io:setopts([{encoding,unicode}]),</div><div>  % io:format("~p~n", [{io:printable_range(), io:getopts()}]),</div><div>  'hello_юникод_世界'(),</div><div>  io:format("~tp~n", [{"Hello, 世界, юникод"}]).</div><div><br></div><div>'hello_юникод_世界'() -></div><div>  io:format("~tp~n", [{'hello_юникод', <<"Hello, 世界; юникод"/utf8>>, "Hello, 世界; юникод"}]).</div></div><div><br></div><div><div>➸ erlang20 ./hello.erl</div><div>{'hello_юникод',<<"Hello, 世界; юникод"/utf8>>,"Hello, 世界; юникод"}</div><div>{"Hello, 世界, юникод"}</div></div><div><br></div><div>If I uncomment the "-mode(compile)." line, it just runs into compilation error (same as below shell compilation errors)</div><div><br></div><div>Or in the Erlang shell, trying to compile it just failed: (I have to remove (or comment out) the first "#!/usr/bin/env escript" line)</div><div><br></div><div><div>➸ erlang20</div><div>Erlang/OTP 20 [DEVELOPMENT] [erts-9.0] [source-efcb91bce] [64-bit] [smp:8:8] [ds:8:8:10] [async-threads:10] [hipe] [kernel-poll:false]</div><div><br></div><div>Eshell V9.0  (abort with ^G)</div><div>1> c(hello).</div><div>hello.erl: internal error in beam_asm;</div><div>crash reason: badarg</div><div><br></div><div>  in function  list_to_binary/1</div><div>     called as list_to_binary([[5,104,101,108,108,111],</div><div>  [4,109,97,105,110],</div><div>  [2,105,111],</div><div>  [7,115,101,116,111,112,116,115],</div><div>  [6,102,111,114,109,97,116],</div><div>  [15,104,101,108,108,111,95,1102,1085,1080,1082,1086,1076,95,19990,30028],</div><div>  "\vmodule_info",</div><div>  [6,101,114,108,97,110,103],</div><div>  [15,103,101,116,95,109,111,100,117,108,101,95,105,110,102,111]])</div><div>  in call from beam_asm:chunk/3 (beam_asm.erl, line 213)</div><div>  in call from beam_asm:build_file/8 (beam_asm.erl, line 97)</div><div>  in call from beam_asm:module/4 (beam_asm.erl, line 31)</div><div>  in call from compile:beam_asm/1 (compile.erl, line 1370)</div><div>  in call from compile:'-internal_comp/4-anonymous-1-'/2 (compile.erl, line 329)</div><div>  in call from compile:fold_comp/3 (compile.erl, line 355)</div><div>  in call from compile:internal_comp/4 (compile.erl, line 339)</div><div>error</div><div>2> </div></div><div><br></div><div>I have looked up in many of the commit messages, still not seeing a good example of how to use unicode in function names? Could some developer behind this feature give more examples?</div><div><a href="https://github.com/erlang/otp/blame/master/lib/stdlib/doc/src/unicode_usage.xml#L66-L71">https://github.com/erlang/otp/blame/master/lib/stdlib/doc/src/unicode_usage.xml#L66-L71</a><br></div></div>