Erlang学习--windows环境搭建
1. 下载Erlang运行环境,windows64位安装包18.2.1版本。 https://www.erlang.org/downloads OTP 18.2.1 Windows 32-bit Binary File 并安装之。 2. 安装myeclipse插件,我的myeclipse是2014,如果用eclipse也是可以的,最好是用最新的版本。 help->install from site->add 添加如下网址,ErLang - http://download.erlide.org/update 参考网站: http://erlide.org/articles/120_Installing-and-updating.html 如果打不开,需要翻墙。 3. 编写第一个helloworld 程序 file->new->Erlang project起个项目名字hello 在src目录下面新建模块hello会自动生成代码,在代码最下面写上自己的say(Something)函数 -module(hello). -export([say/1]). say(Something)->Something. ok做为erlang project运行 输入 hello:say(“Hello World”). 控制台成功打印”Hello World” 来源: oschina 链接: https: