English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
Programação Distribuída do Erlang
Se o nó local estiver vivo e puder fazer parte de um sistema distribuído, retorna true. Caso contrário, retorna false.
is_alive()
Nenhum
Se o nó local estiver ativo e puder fazer parte de um sistema distribuído, retorna true. Caso contrário, retorna false.
-module(helloworld). -export([start/0]). start() -> io:fwrite("~p",[is_alive()]).
Resultado da Saída
Quando executarmos o programa acima, obteremos o seguinte resultado.
false