bash
cargo build
rust:
bash
$ cargo build --example port
...
$ cd examples
$ erl
Eshell V12.0.3 (abort with ^G)
1>
erlang:
erlang
1> c(port).
{ok,port}
2> {ok,P} = port:start_link().
{ok,<0.86.0>}
3> port:add(P, 1, 2).
{ok,3}
4> port:sub(P, 3, 1).
{ok,2}
5> port:mul(P, 2, 3).
{error,undef}
6> port:stop(P).
ok
Apache-2.0