首页
编程教程
编程导航
编程百科
编程博文
编程实例
常见问题
产品运营
软件教程
办公软件
Erlang整数
Erlang实例代码
2022-07-04
% Erlang整数 -module(helloworld). -export([start/0]). start() -> io:fwrite(~w,[1+1]).
相关文章
Erlang if语句
-module(helloworld). -export([start/0]). start() ->...
Erlang多重表达式
-module(helloworld). -export([start/0]). start() ->...
Erlang嵌套if语句
-module(helloworld). -export([start/0]). start() ->...
Erlang case语句
-module(helloworld). -export([start/0]). start() ->...
Erlang函数定义
-module(helloworld). -export([add/2,start/0]). add(X,...
Erlang整数
% Erlang整数 -module(helloworld). -export([start/0]). ...