-module(helloworld).
-import(string,[equal/2]).
-export([start/0]).
start() ->
Str1 = "This is a string1",
Str2 = "This is a string2",
Status = equal(Str1,Str2),
io:fwrite("~p~n",[Status]).
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266278.html