<div dir="ltr">Hi derek,<div><br></div><div>I have sent a PR that improves the coverage around this feature: <a href="https://github.com/erlang/otp/pull/1439">https://github.com/erlang/otp/pull/1439</a></div><div><br></div><div>The test currently passes on an old master reference. I will rebuild my development VM from master and follow up.</div></div><div class="gmail_extra"><br clear="all"><div><div class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div><div><br></div><div><br></div><div><span style="font-size:13px"><div><span style="font-family:arial,sans-serif;font-size:13px;border-collapse:collapse"><b>José Valim</b></span></div><div><span style="font-family:arial,sans-serif;font-size:13px;border-collapse:collapse"><div><span style="font-family:verdana,sans-serif;font-size:x-small"><a href="http://www.plataformatec.com.br/" style="color:rgb(42,93,176)" target="_blank">www.plataformatec.com.br</a></span></div><div><span style="font-family:verdana,sans-serif;font-size:x-small">Skype: jv.ptec</span></div><div><span style="font-family:verdana,sans-serif;font-size:x-small">Founder and Director of R&D</span></div></span></div></span></div></div></div></div></div>
<br><div class="gmail_quote">On Thu, May 4, 2017 at 1:11 AM, derek <span dir="ltr"><<a href="mailto:denc716@gmail.com" target="_blank">denc716@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><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" target="_blank">https://github.com/erlang/otp/<wbr>blob/master/lib/stdlib/doc/<wbr>src/unicode_usage.xml#L66-L71</a><br></div><a href="https://github.com/erlang/otp/pulls?q=unicode" target="_blank">https://github.com/erlang/otp/<wbr>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}<wbr>]),</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,<wbr>108,108,111],</div><div>  [4,109,97,105,110],</div><div>  [2,105,111],</div><div>  [7,115,101,116,111,112,116,<wbr>115],</div><div>  [6,102,111,114,109,97,116],</div><div>  [15,104,101,108,108,111,95,<wbr>1102,1085,1080,1082,1086,1076,<wbr>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,<wbr>100,117,108,101,95,105,110,<wbr>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-<wbr>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" target="_blank">https://github.com/erlang/otp/<wbr>blame/master/lib/stdlib/doc/<wbr>src/unicode_usage.xml#L66-L71</a><br></div></div>
<br>______________________________<wbr>_________________<br>
erlang-questions mailing list<br>
<a href="mailto:erlang-questions@erlang.org">erlang-questions@erlang.org</a><br>
<a href="http://erlang.org/mailman/listinfo/erlang-questions" rel="noreferrer" target="_blank">http://erlang.org/mailman/<wbr>listinfo/erlang-questions</a><br>
<br></blockquote></div><br></div>