随笔分类 -  erlang

GenServer Credo.CLI.Output.Shell terminating
摘要:need install bunt mix archive.install hex bunt mix archive.install hex credo 阅读全文
posted @ 2025-02-04 16:00 c3tc3tc3t 阅读(8) 评论(0) 推荐(0)
linux mint 18.2 install erlang
摘要:由于Linux min 18.2仓库中的erlnag是18.2,我们手动安装最新版本,参考 https://www.erlang-solutions.com/resources/download.html 1 你需要创建一个 /etc/apt/sources.list 文件并填入下面 2 添加公钥 阅读全文
posted @ 2017-10-05 00:25 c3tc3tc3t 阅读(233) 评论(0) 推荐(0)
erlang尾递归练习
摘要:1 %%计算链表长度尾递归实现 2 lez(N) -> lez(N, 0). 3 4 lez([], Acc) -> Acc; 5 lez([_ | T], Acc) -> lez(T, Acc + 1). 6 %% 将某个元素重复n次返回一个链表 dulicate(0,_) ->[]; dulic 阅读全文
posted @ 2017-07-27 14:04 c3tc3tc3t 阅读(444) 评论(0) 推荐(0)
使用kerl安装erlang遇到的问题及解决办法-bak
摘要:1 需要安装相关包 2 出现下面错误 * documentation : * xsltproc is missing. * fop is missing. * xmllint is missing. * The documentation can not be built. 解决 3 下面错误, o 阅读全文
posted @ 2016-08-09 17:41 c3tc3tc3t 阅读(789) 评论(0) 推荐(0)